From f9204ebe7cbf375131d99d8256aa2e4744c18f12 Mon Sep 17 00:00:00 2001 From: "renan.saddam" Date: Thu, 26 Nov 2009 17:52:14 -0200 Subject: [PATCH] Adding $pos = 0; to avoid php notice. --- cake/dispatcher.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cake/dispatcher.php b/cake/dispatcher.php index 1702ec5f4..5dd2a2c3c 100644 --- a/cake/dispatcher.php +++ b/cake/dispatcher.php @@ -611,8 +611,9 @@ class Dispatcher extends Object { App::import('View', 'Media', false); $Media = new MediaView(); $ext = array_pop(explode('.', $url)); - + if (isset($Media->mimeType[$ext])) { + $pos = 0; $parts = explode('/', $url); if ($parts[0] === 'css' || $parts[0] === 'js' || $parts[0] === 'img') { $pos = 0; @@ -638,10 +639,10 @@ class Dispatcher extends Object { if (strpos($plugin, '/') !== false) { list($plugin, $theme) = explode('/', $plugin); $themePaths = App::path('views'); - + foreach ($themePaths as $viewPath) { $path = $viewPath . 'themed' . DS . $theme . DS . 'webroot' . DS; - + if ($plugin === 'theme' && (is_file($path . $url) && file_exists($path . $url))) { $assetFile = $path . $url; $matched = true;