Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
Stardog committed Nov 10, 2017
1 parent 99a8871 commit f071256
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion boost/boost.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @license http://opensource.org/licenses/gpl-3.0.html
*/
$proper_name = 'Properties';
$version = '2.0.8';
$version = '2.0.9';
$register = false;
$unregister = false;
$import_sql = false;
Expand Down
14 changes: 13 additions & 1 deletion boost/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ public function run(&$content)
case $this->compare('2.0.8'):
$methodName = $this->getMethodName('2.0.8');
$this->$methodName($content);

case $this->compare('2.0.9'):
$methodName = $this->getMethodName('2.0.9');
$this->$methodName($content);
}
return $content;
}
Expand Down Expand Up @@ -278,8 +282,16 @@ public function v2_0_8(&$content)
{
$updates = array('Changed wording on manager page',
'Added additional manager log-in link and changed sign in to Student sign in');
$this->addContent($content, '2.0.7', $updates);
$this->addContent($content, '2.0.8', $updates);
}

public function v2_0_9(&$content)
{
$updates = array('Removed major text limit', 'Added warning message when sublease lease fails.', 'Changed SubleasePhoto use name to prevent compile error.');
$this->addContent($content, '2.0.9', $updates);
}



private function addContent(&$content, $version, array $changes)
{
Expand Down

0 comments on commit f071256

Please sign in to comment.