Changeset 344
- Timestamp:
- 03/25/08 10:32:39 (10 months ago)
- Location:
- trunk/app/views
- Files:
-
- 1 removed
- 4 modified
-
acquaintances/admin_add.ctp (modified) (1 diff)
-
elements/livechat.ctp (modified) (1 diff)
-
forums/trac.ctp (deleted)
-
galleries/admin_listing.ctp (modified) (1 diff)
-
galleries/display.ctp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/acquaintances/admin_add.ctp
r256 r344 4 4 5 5 <?php echo $html->formTag('/acquintances/add/','post'); ?> 6 <?php echo $html->hiddenTag('Acquintance/user_id', $ othAuth->user('id'))?>6 <?php echo $html->hiddenTag('Acquintance/user_id', $cU['User']['id'] ); ?> 7 7 <fieldset> 8 8 <?php echo $form->labelTag('Acquintance/title', 'Title:' );?><br /> -
trunk/app/views/elements/livechat.ctp
r314 r344 12 12 echo $html->hiddenTag('Livechat/user_id', $Element[0]["User"]["id"]); // user_id 13 13 14 if ( $ othAuth->user('id'))14 if ( $cU['User']['id'] ) 15 15 { 16 echo $html->hiddenTag('Livechat/sender_name', $ othAuth->user('username')); // user_id16 echo $html->hiddenTag('Livechat/sender_name', $cU['User']['username'] ); // user_id 17 17 } 18 18 else -
trunk/app/views/galleries/admin_listing.ctp
r253 r344 21 21 $gags->sendEdit($val['Gallery']['id'], 'galleries'), 22 22 $html->link($html->image('admin/eye_icon.gif', array("alt"=>"See ". $val['Gallery']['title'], "title"=>"See ". $val['Gallery']['title'])), '#', 23 array("onclick"=>"window.open('/galleries/display/". $othAuth->user('username').", null, 'status=1,toolbar=1,scrollbars=1,height=600,width=800';)"), null, null, false),23 array("onclick"=>"window.open('/galleries/display/". $cU['User']['username'].", null, 'status=1,toolbar=1,scrollbars=1,height=600,width=800';)"), null, null, false), 24 24 $html->link($val['Gallery']['title'], '/admin/photos/listing/'.$val['Gallery']['id']), 25 25 $gags->setStatus($val['Gallery']['status']), -
trunk/app/views/galleries/display.ctp
r253 r344 63 63 <p> 64 64 <?php 65 if ( $ othAuth->user('username'))65 if ( $cU['User']['username'] ) 66 66 { 67 echo $ othAuth->user('username'). " escribe:";67 echo $cU['User']['username'] . " escribe:"; 68 68 69 } else { 69 } 70 else 71 { 70 72 echo $html->input('Discution/username', array("size" => 25, "maxlength" => 50)); 71 73 echo $form->labelTag( 'Discution/username', ' Nombre (requerido)' );
