| 26 | | ); |
| 27 | | ?> |
| 28 | | <br /><br /> |
| 29 | | <b>Reference:</b> |
| 30 | | |
| 31 | | <?php echo $html->link( |
| 32 | | $html->image('static/newwindow.gif', array("alt"=>"Open new window", "title"=>"Open new window")), |
| 33 | | $data['News']['reference'], |
| 34 | | array("onclick"=>"window.open(this.href, '_help', 'status,scrollbars,resizable,width=800,height=600,left=10,top=10,menubar,toolbar')"), |
| 35 | | null, |
| 36 | | null, |
| 37 | | false); |
| | 23 | )); |
| | 24 | |
| | 25 | if ( strlen($data['News']['reference']) > 10) : |
| | 26 | |
| | 27 | echo $html->para(null, __('Reference', true) .': '. $html->link( |
| | 28 | $html->image('static/newwindow.gif', |
| | 29 | array('alt'=>__('Open new window', true), 'title'=>__('Open new window', true))), |
| | 30 | '#', |
| | 31 | array("onclick"=>"window.open('".$data['News']['reference']."', '_help', 'status,scrollbars,resizable,width=800,height=600,left=10,top=10,menubar,toolbar')"), null, null, false)); |
| | 32 | endif; |
| 49 | | $tmp = $html->para(null,$time->timeAgoInWords($v['created']) . ' <b>'. $v['User']['username'] . '</b> wrote:<br />', array('style'=>'font-size:8pt;font-family:Georgia;')); |
| | 44 | $tmp = $html->para(null, |
| | 45 | $html->link($html->image('avatars/'.$v['User']['avatar'], array('width'=>'20px','alt'=>$v['User']['username'],'title'=>$v['User']['username'])), '/users/about/'.$v['User']['username'], null, null, false) .' '. |
| | 46 | $html->link($v['User']['username'], '/users/about/'.$v['User']['username']).'<br />'. |
| | 47 | $html->image('static/time.png', array('alt'=>'Time')).' '.$time->timeAgoInWords($v['created']), array('style'=>'font-size:8pt;font-family:Georgia;')); |