Skip to content

Commit

Permalink
added support for cloud poodll
Browse files Browse the repository at this point in the history
  • Loading branch information
justinhunt committed Sep 4, 2018
1 parent c679dec commit 5c1546d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Version 1.1.1(Build 2018090300)
-Added support for Cloud Poodll API token

Version 1.1.0(Build 2018041000)
-Implemented new Moodle Privacy API
Expand Down
3 changes: 2 additions & 1 deletion lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ function atto_generico_params_for_js($elementid, $options, $fpoptions)
&& strpos($tempvar, 'URLPARAM:') === false
&& $tempvar != 'MOODLEPAGEID'
&& $tempvar != 'WWWROOT'
&& $tempvar != 'AUTOID') {
&& $tempvar != 'AUTOID'
&& $tempvar != 'CLOUDPOODLLTOKEN') {
$usevariables[] = $tempvar;
}
}
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@

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

$plugin->version = 2018041000; // The current plugin version (Date: YYYYMMDDXX).
$plugin->version = 2018090300; // The current plugin version (Date: YYYYMMDDXX).
$plugin->requires = 2013110500; // Requires this Moodle version.
$plugin->component = 'atto_generico'; // Full name of the plugin (used for diagnostics).
$plugin->maturity = MATURITY_STABLE;
// Human readable version informatiomn
$plugin->release = '1.0.10 (Build 2018041000)';
$plugin->release = '1.1.1 (Build 2018090300)';
$plugin->dependencies = array('filter_generico' => 2016011800);

0 comments on commit 5c1546d

Please sign in to comment.