Skip to content

Commit

Permalink
Merge branch 'wip-MSFTMPP-136-m27' into MOODLE_27_STABLE
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmcq committed Mar 16, 2015
2 parents aaaaba8 + 8763af7 commit dc99f5f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion auth/oidc/db/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<FIELD NAME="state" TYPE="char" LENGTH="15" NOTNULL="true" SEQUENCE="false" COMMENT="random state"/>
<FIELD NAME="nonce" TYPE="char" LENGTH="15" NOTNULL="true" SEQUENCE="false" COMMENT="nonce"/>
<FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="false" COMMENT="time login initiated"/>
<FIELD NAME="additionaldata" TYPE="text" NOTNULL="true" SEQUENCE="false" COMMENT="additional stored parameters"/>
<FIELD NAME="additionaldata" TYPE="text" NOTNULL="false" SEQUENCE="false" COMMENT="additional stored parameters"/>
</FIELDS>
<KEYS>
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
Expand Down
2 changes: 1 addition & 1 deletion auth/oidc/db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function xmldb_auth_oidc_upgrade($oldversion) {

if ($result && $oldversion < 2015011604) {
$table = new xmldb_table('auth_oidc_state');
$field = new xmldb_field('additionaldata', XMLDB_TYPE_TEXT, null, null, XMLDB_NOTNULL, null, null, 'timecreated');
$field = new xmldb_field('additionaldata', XMLDB_TYPE_TEXT, null, null, null, null, null, 'timecreated');
if (!$dbman->field_exists($table, $field)) {
$dbman->add_field($table, $field);
}
Expand Down
2 changes: 1 addition & 1 deletion auth/oidc/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2015011608;
$plugin->version = 2015011609;
$plugin->requires = 2014051200;
$plugin->component = 'auth_oidc';
$plugin->maturity = MATURITY_STABLE;
Expand Down

0 comments on commit dc99f5f

Please sign in to comment.