Skip to content

Commit 93d1449

Browse files
committed
v1.3.00
1 parent 51fc603 commit 93d1449

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

Policies/CHANGEDB.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,8 @@
9696
++$count;
9797
$sql[$count][0] = '1.2.00';
9898
$sql[$count][1] = "";
99+
100+
//v1.3.00
101+
++$count;
102+
$sql[$count][0] = '1.3.00';
103+
$sql[$count][1] = "";

Policies/CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
CHANGELOG
22
=========
3+
v1.3.00
4+
-------
5+
Updated default database storage engine to InnoDB
6+
37
v1.2.00
48
-------
59
Object oriented rewrite and code cleanup

Policies/manifest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
$entryURL = 'policies_view.php';
2626
$type = 'Additional';
2727
$category = 'Other';
28-
$version = '1.2.00';
28+
$version = '1.3.00';
2929
$author = 'Ross Parker';
3030
$url = 'http://rossparker.org';
3131

@@ -48,7 +48,7 @@
4848
`gibbonPersonIDCreator` int(8) unsigned zerofill NOT NULL,
4949
`timestampCreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
5050
PRIMARY KEY (`policiesPolicyID`)
51-
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;";
51+
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;";
5252

5353
//Action rows
5454
$actionRows[0]['name'] = 'View Policies_byRole';

Policies/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
/**
2121
* Sets version information.
2222
*/
23-
$moduleVersion = '1.2.00';
23+
$moduleVersion = '1.3.00';

0 commit comments

Comments
 (0)