diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -24,7 +24,8 @@ switch ($return) { drupal_site_offline(); break; default: - if (!empty($return)) { + // Print any value (including an empty string) except NULL or undefined: + if (isset($return)) { print theme('page', $return); } break; |