From: <gem...@li...> - 2012-06-07 14:04:28
|
Revision: 745 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=745&view=rev Author: matijsdejong Date: 2012-06-07 14:04:22 +0000 (Thu, 07 Jun 2012) Log Message: ----------- Updated changelog + Upgrades AElement.php email title only set when empty Modified Paths: -------------- trunk/library/changelog.txt trunk/library/classes/Gems/Upgrades.php trunk/library/classes/MUtil/Html/AElement.php Modified: trunk/library/changelog.txt =================================================================== --- trunk/library/changelog.txt 2012-06-07 14:03:17 UTC (rev 744) +++ trunk/library/changelog.txt 2012-06-07 14:04:22 UTC (rev 745) @@ -1,3 +1,12 @@ +Important changes from 1.5.3 => 1.5.4 +============================================================ +New logLevel project.ini setting +Added export of all patient data on a single page or PDF (if binary specified in project.ini) +Fixed a lot of issues with staff not being able to login or not being created +Fixed handling of token return on multi-url sites +Added maximum number of reminders sent to tokens +Fixed several date display and editing issues + Important changes from 1.5.2 => 1.5.3 ============================================================ People can login using their e-mail address as user name. This can be activated by for respondents and staff seperately, by default this is off for both. Modified: trunk/library/classes/Gems/Upgrades.php =================================================================== --- trunk/library/classes/Gems/Upgrades.php 2012-06-07 14:03:17 UTC (rev 744) +++ trunk/library/classes/Gems/Upgrades.php 2012-06-07 14:04:22 UTC (rev 745) @@ -1,4 +1,5 @@ <?php + /** * Copyright (c) 2011, Erasmus MC * All rights reserved. @@ -59,6 +60,7 @@ $this->register(array($this, 'Upgrade150to151'), 'Upgrade from 1.5.0 to 1.5.1'); $this->register(array($this, 'Upgrade151to152'), 'Upgrade from 1.5.1 to 1.5.2'); $this->register(array($this, 'Upgrade152to153'), 'Upgrade from 1.5.2 to 1.5.3'); + $this->register(array($this, 'Upgrade153to154'), 'Upgrade from 1.5.3 to 1.5.4'); } @@ -116,4 +118,14 @@ return true; } + + /** + * To upgrade to 1.5.4 just execute patchlevel 47 + */ + public function Upgrade153to154() + { + $this->_batch->addTask('Db_ExecutePatch', 47); + + return true; + } } \ No newline at end of file Modified: trunk/library/classes/MUtil/Html/AElement.php =================================================================== --- trunk/library/classes/MUtil/Html/AElement.php 2012-06-07 14:03:17 UTC (rev 744) +++ trunk/library/classes/MUtil/Html/AElement.php 2012-06-07 14:04:22 UTC (rev 745) @@ -112,7 +112,9 @@ $href = $args['href']; unset($args['href']); } else { - $args['title'] = $email; + if (! isset($args['title'])) { + $args['title'] = $email; + } $href = array('mailto:', $email); } if (! isset($args['onclick'])) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |