Browse Source

[RELEASE] backported r21705 to trunk

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@21710 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew 16 years ago
parent
commit
fbcca778ee

+ 1 - 1
library/Zend/Dojo/View/Helper/Dojo/Container.php

@@ -67,7 +67,7 @@ class Zend_Dojo_View_Helper_Dojo_Container
      * Dojo version to use from CDN
      * @var string
      */
-    protected $_cdnVersion = '1.3.2';
+    protected $_cdnVersion = '1.4.1';
 
     /**
      * Has the dijit loader been registered?

+ 1 - 1
tests/Zend/Dojo/View/Helper/DojoTest.php

@@ -223,7 +223,7 @@ class Zend_Dojo_View_Helper_DojoTest extends PHPUnit_Framework_TestCase
     public function testShouldUseLatestVersionWhenUsingCdnByDefault()
     {
         $this->helper->enable();
-        $this->assertEquals('1.3.2', $this->helper->getCdnVersion());
+        $this->assertEquals('1.4.1', $this->helper->getCdnVersion());
     }
 
     public function testShouldAllowSpecifyingDojoVersionWhenUtilizingCdn()