|
From: <gem...@li...> - 2012-02-20 14:44:38
|
Revision: 503
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=503&view=rev
Author: mennodekker
Date: 2012-02-20 14:44:29 +0000 (Mon, 20 Feb 2012)
Log Message:
-----------
Merged revision(s) 485, 489 from tags/1.5.1:
Forgot to include the upgrade :)
........
Fixing padding on #header_bar #login element
........
Modified Paths:
--------------
trunk/library/classes/Gems/Upgrades.php
trunk/new_project/htdocs/gems/css/gems-new.css
Property Changed:
----------------
trunk/
trunk/library/
Property changes on: trunk
___________________________________________________________________
Modified: svn:mergeinfo
- /branches/1.5.0-pulse:306-430,467
/branches/1.5.x:426-455,458-472,475-481
/tags/1.5.0beta1:305
+ /branches/1.5.0-pulse:306-430,467
/branches/1.5.x:426-455,458-472,475-481
/tags/1.5.0beta1:305
/tags/1.5.1:485,489
Property changes on: trunk/library
___________________________________________________________________
Modified: svn:mergeinfo
- /branches/1.5.0-pulse/library:306-344,346,467
/branches/1.5.x/library:426-455,458-472,475-481
/branches/newUser:113-150
/branches/newUser2:175-207
/branches/userloader:259-324
/tags/1.5.0beta1/library:305
+ /branches/1.5.0-pulse/library:306-344,346,467
/branches/1.5.x/library:426-455,458-472,475-481
/branches/newUser:113-150
/branches/newUser2:175-207
/branches/userloader:259-324
/tags/1.5.0beta1/library:305
/tags/1.5.1/library:485,489
Modified: trunk/library/classes/Gems/Upgrades.php
===================================================================
--- trunk/library/classes/Gems/Upgrades.php 2012-02-20 14:13:20 UTC (rev 502)
+++ trunk/library/classes/Gems/Upgrades.php 2012-02-20 14:44:29 UTC (rev 503)
@@ -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
Modified: trunk/new_project/htdocs/gems/css/gems-new.css
===================================================================
--- trunk/new_project/htdocs/gems/css/gems-new.css 2012-02-20 14:13:20 UTC (rev 502)
+++ trunk/new_project/htdocs/gems/css/gems-new.css 2012-02-20 14:44:29 UTC (rev 503)
@@ -367,7 +367,7 @@
padding: 0px;
}
-#header_bar #contact {
+#header_bar #contact, #header_bar #login {
position: relative;
padding: 5px 5px 0 5px;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|