summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 00f497d4e..8c47f0036 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1500,10 +1500,10 @@ function drupal_map_assoc($array, $function = NULL) {
*/
function drupal_eval($code) {
global $theme_path, $theme_info, $conf;
-
+
// Store current theme path.
$old_theme_path = $theme_path;
-
+
// Restore theme_path to the theme, as long as drupal_eval() executes,
// so code evaluted will not see the caller module as the current theme.
// If theme info is not initialized get the path from theme_default.
@@ -1518,10 +1518,10 @@ function drupal_eval($code) {
print eval('?>'. $code);
$output = ob_get_contents();
ob_end_clean();
-
+
// Recover original theme path.
$theme_path = $old_theme_path;
-
+
return $output;
}