Index: app/Mage.php =================================================================== --- app/Mage.php (revision 31596) +++ app/Mage.php (revision 31597) @@ -82,7 +82,7 @@ public static function getVersion() { - return '1.2.0.1'; + return '1.2.0.2'; } /** Index: app/code/core/Mage/Core/Model/Store.php =================================================================== --- app/code/core/Mage/Core/Model/Store.php (revision 31596) +++ app/code/core/Mage/Core/Model/Store.php (revision 31597) @@ -185,6 +185,9 @@ $fullPath = 'stores/'.$this->getCode().'/'.$path; $data = $config->getNode($fullPath); + if (!$data && !Mage::isInstalled()) { + $data = $config->getNode('default/' . $path); + } if (!$data) { return null; } @@ -358,6 +361,7 @@ default: throw Mage::exception('Mage_Core', Mage::helper('core')->__('Invalid base url type')); } + $this->_baseUrlCache[$cacheKey] = rtrim($url, '/').'/'; } #echo "CACHE: ".$cacheKey.','.$this->_baseUrlCache[$cacheKey].' *** '; Index: app/etc/config.xml =================================================================== --- app/etc/config.xml (revision 31596) +++ app/etc/config.xml (revision 31597) @@ -381,28 +381,4 @@ - - - - - - {{base_url}} - {{unsecure_base_url}} - {{unsecure_base_url}} - {{unsecure_base_url}}skin/ - {{unsecure_base_url}}js/ - {{unsecure_base_url}}media/ - - - - {{base_url}} - {{secure_base_url}} - {{secure_base_url}} - {{secure_base_url}}js/ - {{secure_base_url}}skin/ - {{secure_base_url}}media/ - - - - \ No newline at end of file Property changes on: . ___________________________________________________________________ Name: svnmerge-integrated - /branches/1.2-trunk:1-31203 + /branches/1.2-trunk:1-31596