From f07125625abb70eb9177bba924422cef0c8bcc5a Mon Sep 17 00:00:00 2001 From: Matthew McNaney Date: Fri, 10 Nov 2017 08:56:42 -0500 Subject: [PATCH] Updated version --- boost/boost.php | 2 +- boost/update.php | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/boost/boost.php b/boost/boost.php index 59ee653..702c554 100644 --- a/boost/boost.php +++ b/boost/boost.php @@ -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; diff --git a/boost/update.php b/boost/update.php index 832b048..566a73b 100644 --- a/boost/update.php +++ b/boost/update.php @@ -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; } @@ -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) {