From: <gem...@li...> - 2012-02-15 15:25:31
|
Revision: 485 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=485&view=rev Author: mennodekker Date: 2012-02-15 15:25:20 +0000 (Wed, 15 Feb 2012) Log Message: ----------- Forgot to include the upgrade :) Modified Paths: -------------- tags/1.5.1/library/classes/Gems/Upgrades.php Modified: tags/1.5.1/library/classes/Gems/Upgrades.php =================================================================== --- tags/1.5.1/library/classes/Gems/Upgrades.php 2012-02-15 15:03:30 UTC (rev 484) +++ tags/1.5.1/library/classes/Gems/Upgrades.php 2012-02-15 15:25:20 UTC (rev 485) @@ -56,6 +56,7 @@ $this->setContext('gems'); //And add our patches $this->register('Upgrade143to15', 'Upgrade from 1.43 to 1.5'); + $this->register('Upgrade15to151', 'Upgrade from 1.5.0. to 1.5.1'); } @@ -99,4 +100,17 @@ return true; } + + /** + * To upgrade to 1.5.1 just execute patchlevel 44 + */ + public function Upgrade15to151() + { + $this->addMessage(sprintf($this->_('Executing patchlevel %d'),44)); + $this->patcher->executePatch(44); + + $this->invalidateCache(); + + return true; + } } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |