Skip to content
This repository was archived by the owner on Apr 11, 2022. It is now read-only.

Commit 8d48293

Browse files
committed
Updated packages
1 parent 9e5fc29 commit 8d48293

4 files changed

Lines changed: 1239 additions & 1202 deletions

File tree

boost/boost.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @license http://opensource.org/licenses/gpl-3.0.html
1919
*/
2020
$proper_name = 'Properties';
21-
$version = '2.3.1';
21+
$version = '2.3.2';
2222
$register = false;
2323
$unregister = false;
2424
$import_sql = false;

boost/update.php

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function properties_update(&$content, $currentVersion)
1616
}
1717

1818
/**
19-
*
19+
*
2020
* public function v0_0_0() {
2121
* //logic
2222
* $changes = array();
@@ -155,22 +155,26 @@ public function run(&$content)
155155
case $this->compare('2.2.1'):
156156
$methodName = $this->getMethodName('2.2.1');
157157
$this->$methodName($content);
158-
158+
159159
case $this->compare('2.2.2'):
160160
$methodName = $this->getMethodName('2.2.2');
161161
$this->$methodName($content);
162-
162+
163163
case $this->compare('2.2.3'):
164164
$methodName = $this->getMethodName('2.2.3');
165165
$this->$methodName($content);
166-
166+
167167
case $this->compare('2.3.0'):
168168
$methodName = $this->getMethodName('2.3.0');
169169
$this->$methodName($content);
170-
170+
171171
case $this->compare('2.3.1'):
172172
$methodName = $this->getMethodName('2.3.1');
173173
$this->$methodName($content);
174+
175+
case $this->compare('2.3.2'):
176+
$methodName = $this->getMethodName('2.3.2');
177+
$this->$methodName($content);
174178
}
175179
return $content;
176180
}
@@ -432,19 +436,19 @@ public function v2_2_1(&$content)
432436
$updates = array('Prevent duplicate defines for SwiftMailer', 'Fixed report date selector', 'Fixed double fa-lg in views.', 'Removed default report selection', 'Fixed manager report header.', 'Fixed student activity date entry.');
433437
$this->addContent($content, '2.2.1', $updates);
434438
}
435-
439+
436440
public function v2_2_2(&$content)
437441
{
438442
$updates = array('Fixed no null variable bug.');
439443
$this->addContent($content, '2.2.2', $updates);
440444
}
441-
445+
442446
public function v2_2_3(&$content)
443447
{
444448
$updates = array('Fixed image upload.', 'Added error messages on broken uploads.', 'Added image size limit.');
445449
$this->addContent($content, '2.2.3', $updates);
446450
}
447-
451+
448452
public function v2_3_0(&$content)
449453
{
450454
$db = Database::getDB();
@@ -454,14 +458,20 @@ public function v2_3_0(&$content)
454458
$updates = array('Sublease admins may hide contact information.');
455459
$this->addContent($content, '2.3.0', $updates);
456460
}
457-
461+
458462
public function v2_3_1(&$content)
459463
{
460464
$updates = array('Updated NPM libraries.');
461465
$updates = array('Fixed sticky all check button in student report.');
462466
$this->addContent($content, '2.3.1', $updates);
463467
}
464468

469+
public function v2_3_2(&$content)
470+
{
471+
$updates = array('Updated NPM libraries.');
472+
$this->addContent($content, '2.3.2', $updates);
473+
}
474+
465475
private function addContent(&$content, $version, array $changes)
466476
{
467477
$changes_string = implode("\n+ ", $changes);

0 commit comments

Comments
 (0)