it looks like this:

...
print $submitted
<?=$terms? 'Under: '.$terms.'' : ''?>

print $content

...

obviously, the text at "<?=$terms?" looks weird, thus the attached visual bug.

CommentFileSizeAuthor
bluelake_bug.png6.76 KBvv7

Comments

vv7’s picture

see also http://drupal.org/node/511786

(fixed as per that instruction, yet the tabs are missing)

Omar, please fix...

vv7’s picture

fixed it myself.

in page.tpl.php there is such a fragment:

        <?php print $breadcrumb ?>
				<?php $title? '<h1 class="title">'. $title .'</h1>' : ''; ?>
				<?php $tabs? '<div class="tabs">'. $tabs .'</div>' : ''; ?>
        <?php print $help ?>
        <?php print $messages ?>
        <?php print $content; ?>

and i replaced it with

        <?php print $breadcrumb ?>
        <?php if ($content_top):?><div id="content-top"><?php print $content_top ?></div><?php endif; ?>
        <?php if ($title): ?><h1 class="title"><?php print $title ?></h1><?php endif; ?>
        <?php if ($tabs): ?><div class="tabs"><?php print $tabs ?></div><?php endif; ?>
        <?php print $help ?>
        <?php print $messages ?>
        <?php print $content; ?>
vv7’s picture

Omar, please check this change and commit it into CVS.

vv7’s picture

Status: Active » Closed (fixed)