arjun
committed
on 05 Aug 02
removed table aliases from dml stmt since PG dosen't like it. it's only updating one table anyway, so it's not necessary. fix from janine si… Show more
removed table aliases from dml stmt since PG dosen't like it. it's only updating one table anyway, so it's not necessary. fix from janine sisk.

Show less

openacs-4/.../shared/portrait-bits.tcl (+3 -5)
6 6     @cvs-id $Id$
7 7 } {
8 8     user_id:integer
9 9     {item_id ""}
10 10     {size ""}
11 11 }
12 12
13 13
14 14 # If the item_id is provided then we are fine
15 15 if {$item_id eq ""} {
16 16     if { ![db_0or1row get_item_id ""] } {
17 17         #    ad_return_error "Couldn't find portrait" "Couldn't find a portrait for User $user_id"
18 18         ad_return_string_as_file -string "" -mime_type "image/jpeg" -filename ""
19 19         return
20 20     }
21 21 }   
22 22
23 23 if { $size eq "" } {
24 24     cr_write_content -item_id $item_id
25 25 } else {        
26       ad_returnredirect "/image/${item_id}/thumbnail"
27      
  26     ad_returnredirect "/image/${item_id}/${size}"
28 27 }
29