summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-11-23 08:38:24 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-11-23 08:38:24 +0000
commitbdbb115296f4002186ee3a99fadc13988dd1509f (patch)
tree9b34a779463b38da6d0e7cd3152e5a8027ec77f9
parent51ada4c2e2ee305fa12b1f9f70bd6935e825dd80 (diff)
Remove extra quotes around variable that already contained a string value
-rw-r--r--core/libraries/Theme.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/libraries/Theme.php b/core/libraries/Theme.php
index 42843a5a..19c2dd57 100644
--- a/core/libraries/Theme.php
+++ b/core/libraries/Theme.php
@@ -85,7 +85,7 @@ class Theme_Core {
$helper_path = MODPATH . "$module->name/helpers/{$module->name}_block.php";
$helper_class = "{$module->name}_block";
if (file_exists($helper_path) && method_exists($helper_class, $function)) {
- $this->block_helpers[$function][] = "$helper_class";
+ $this->block_helpers[$function][] = $helper_class;
}
}
}