This view helper should fix it:

class My_View_Helper_HeadScript extends Zend_View_Helper_HeadScript
{
        private $_scripts = array();
        
        public function appendFile($path)
        {
                if (!in_array($path,$this->_scripts)) {
                        array_push($this->_scripts, $path);
                        parent::__call('appendFile',array($path));
                }
        }
}


-- 
View this message in context: 
http://www.nabble.com/HeadScript-tp14322216s16154p14375832.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to