diff options
author | Kevin Nehls <kevin@kevinnehls.com> | 2009-07-15 21:28:00 -0700 |
---|---|---|
committer | Kevin Nehls <kevin@kevinnehls.com> | 2009-07-15 21:28:00 -0700 |
commit | b96ac1eb81b7ccd5bd050ffab0ca9ce1feec8f4f (patch) | |
tree | 1d4f9b148ce2d035c843a57a893efe987d58c819 | |
parent | a2930cfa613ef12e91909a9351d2a01019f53937 (diff) |
move fix for backslashes on windows outside of loop per bharat's suggestion
-rw-r--r-- | modules/gallery/libraries/Gallery_View.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/libraries/Gallery_View.php b/modules/gallery/libraries/Gallery_View.php index 4715be09..133066d7 100644 --- a/modules/gallery/libraries/Gallery_View.php +++ b/modules/gallery/libraries/Gallery_View.php @@ -135,12 +135,12 @@ class Gallery_View_Core extends View { $relative = substr(realpath(dirname($css_file) . "/$match[1]"), $docroot_length); if (!empty($relative)) { $search[] = $match[0]; - $relative = str_replace(DIRECTORY_SEPARATOR, "/", $relative); $replace[] = "url('" . url::abs_file($relative) . "')"; } else { Kohana::log("error", "Missing URL reference '{$match[1]}' in CSS file '$css_file'"); } } + $replace = str_replace(DIRECTORY_SEPARATOR, "/", $replace); $css = str_replace($search, $replace, $css); } $imports = preg_match_all("#@import\s*['|\"]{0,1}(.*?)['|\"]{0,1};#", |