on Drupal-6 version (not sure which one):
$ diff page.tpl.php page.tpl.php.orig
64c64
< if (isset($content_bottom)): print $content_bottom; endif;
---
> if ($content_bottom): print $content_bottom; endif;
on Drupal-6 version (not sure which one):
$ diff page.tpl.php page.tpl.php.orig
64c64
< if (isset($content_bottom)): print $content_bottom; endif;
---
> if ($content_bottom): print $content_bottom; endif;
Comments
Comment #1
Anonymous (not verified) commented. sorry ... what is this suppose to mean ? what is the bug ?
Comment #2
toddgee commentedthe bug is that if you don't have error reporting supressed, not using isset causes a PHP warning. This is a minor fix for that issue. not a biggie.
Comment #3
Anonymous (not verified) commentedAh ok, will commit on next release
Comment #4
Anonymous (not verified) commentedCommited to DEV