From e7e514dc77a79ed0100ccc58abb024ead2bb6917 Mon Sep 17 00:00:00 2001 From: Stanislav Yordanov Date: Thu, 14 Nov 2013 16:41:08 +0200 Subject: [PATCH] Removed unused local variable, tab added, phpdoc tags fixed --- classes/controller/Controller.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/classes/controller/Controller.php b/classes/controller/Controller.php index 7d56d2a02..af4861b19 100644 --- a/classes/controller/Controller.php +++ b/classes/controller/Controller.php @@ -313,12 +313,12 @@ abstract class ControllerCore /** * Add a new javascript file in page header. * - * @param mixed $js_uri + * @param mixed $name + * @param mixed $folder * @return void */ public function addJqueryPlugin($name, $folder = null) { - $plugin_path = array(); if (is_array($name)) { foreach ($name as $plugin) @@ -334,10 +334,10 @@ abstract class ControllerCore { $plugin_path = Media::getJqueryPluginPath($name, $folder); - if(!empty($plugin_path['css'])) - $this->addCSS($plugin_path['css']); - if(!empty($plugin_path['js'])) - $this->addJS($plugin_path['js']); + if(!empty($plugin_path['css'])) + $this->addCSS($plugin_path['css']); + if(!empty($plugin_path['js'])) + $this->addJS($plugin_path['js']); } }