Show
Ignore:
Timestamp:
05/20/08 12:57:16 (7 months ago)
Author:
aarkerio
Message:

Login box fixed

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/discussions/admin_listing.ctp

    r409 r529  
    11<?php 
    2 echo 'later'; 
     2die(debug($data)); 
     3echo $html->addCrumb('Control Tools', '/admin/news/start');  
     4echo $html->addCrumb('Comments', '/admin/comments/listing');  
     5echo $html->getCrumbs(' / ');  
     6  
     7echo $html->div('title_section', 'Comments on News'); 
     8 
     9foreach ($data as $val): 
     10   $tmp  = $html->link($val['Discussion']['title'], '/users/entry/'. $cU['User']['username'] . '/'.$val['Discussion']['id']) . '<br />'; 
     11   $tmp .= $val['Comment']['created'].' <b>'.$val['Comment']['username'].' wrote:</b><br />'; 
     12   $tmp .= $html->para(null, $val['Comment']['comment']); 
     13   $tmp .= $gags->confirmDel($val['Comment']['id'], 'Comment'); 
     14   echo $html->div(null, $tmp); 
     15endforeach; 
    316?> 
    417