summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-11-25 16:26:10 -0800
committerBharat Mediratta <bharat@menalto.com>2009-11-25 16:26:10 -0800
commit60c20b0045ade2ceeff648c6b97180df5b3a1dbc (patch)
tree4727a0a15180e807be12f64f401e9c6347588bc6 /modules
parent7eacc465d53d08ced85114b0a4ddc26b3fed848e (diff)
The html helpers no longer forces .js and .css suffixes to urls it generates (yay!)
Diffstat (limited to 'modules')
-rw-r--r--modules/gallery/controllers/combined.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/gallery/controllers/combined.php b/modules/gallery/controllers/combined.php
index 8132fc41..e90a2f1a 100644
--- a/modules/gallery/controllers/combined.php
+++ b/modules/gallery/controllers/combined.php
@@ -22,7 +22,6 @@ class Combined_Controller extends Controller {
* Return the combined Javascript bundle associated with the given key.
*/
public function javascript($key) {
- $key = substr($key, 0, strlen($key) - 3); // strip off the trailing .js
return $this->_emit("javascript", $key);
}
@@ -30,7 +29,6 @@ class Combined_Controller extends Controller {
* Return the combined CSS bundle associated with the given key.
*/
public function css($key) {
- $key = substr($key, 0, strlen($key) - 4); // strip off the trailing .css
return $this->_emit("css", $key);
}