diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-23 08:38:24 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-23 08:38:24 +0000 |
commit | bdbb115296f4002186ee3a99fadc13988dd1509f (patch) | |
tree | 9b34a779463b38da6d0e7cd3152e5a8027ec77f9 /core | |
parent | 51ada4c2e2ee305fa12b1f9f70bd6935e825dd80 (diff) |
Remove extra quotes around variable that already contained a string value
Diffstat (limited to 'core')
-rw-r--r-- | core/libraries/Theme.php | 2 |
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; } } } |