Parent Directory
|
Revision Log
|
Revision Graph
This updated fixes :. Yea - XHTML 1.0 Strict but CSS Does Not (http://drupal.org/node/343844) Replaced opacity with background colours :. pager list isn't shown correctly (http://drupal.org/node/237230) Updated template code base from beta to production compatible.. :. Screenshot incorrect size (http://drupal.org/node/257696) Made sure that the screen shot was 150x90px :. Undefined function: _forum_format() (http://drupal.org/node/309118) replaced function completely. Function was D5 compatible not D6.. :. Fatal error: Call to undefined function (http://drupal.org/node/269445) replaced function completely. Function was D5 compatible not D6..
| 1 | <div class="post-meta"> |
| 2 | <?php if ($submitted) { print '<span class="submitted">' . $submitted . '</span>'; } ?> |
| 3 | <?php if ($comment->new) { print '<a id="new"></a>' . '<span class="new">' . drupal_ucfirst($new) .'</span>'; } ?> |
| 4 | <?php if ($links) { print '<div class="post-tags">' . $links . '</div>'; } ?> |
| 5 | </div> |
| 6 | <div class="post-main"> |
| 7 | <div class="comment<?php print ($comment->new) ? ' comment-new' : ''; print (isset($comment->status) && $comment->status == COMMENT_NOT_PUBLISHED) ? ' comment-unpublished' : ''; print ' '. $zebra; ?>"> |
| 8 | <?php print $picture ?> |
| 9 | <?php print '<h3>' . $title . '</h3>' ?> |
| 10 | <div class="post-entry"> |
| 11 | <?php print $content ?> |
| 12 | <?php if ($signature) { print $signature; } ?> |
| 13 | </div> |
| 14 | <div class="clear-block clear"></div> |
| 15 | </div> |
| 16 | </div> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |