Skip to content

Commit

Permalink
3.64.0.1325
Browse files Browse the repository at this point in the history
 Stable version
  • Loading branch information
mcagigas-at-wiris committed Jan 5, 2017
1 parent 87a8b18 commit e972bbe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.63.1.1322
3.64.0.1325
3 changes: 2 additions & 1 deletion core/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -2054,7 +2054,8 @@ function wrs_openEditorWindow(language, target, isIframe) {
isIframe = true;
}

var path = _wrs_conf_path + "/core/editor.html";
// Avoid double slashes.
var path = _wrs_conf_path.lastIndexOf('/') == _wrs_conf_path.length - 1 ? _wrs_conf_path + "core/editor.html" : _wrs_conf_path + "/core/editor.html";

if (language) {
path = wrs_addArgument(path, "lang", language);
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

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

$plugin->version = 2016121600;
$plugin->release = '3.63.1.1322';
$plugin->version = 2017010500;
$plugin->release = '3.64.0.1325';
$plugin->requires = 2014050800;
$plugin->component = 'atto_wiris';
$plugin->dependencies = array ('filter_wiris' => 2016121600);
$plugin->dependencies = array ('filter_wiris' => 2017010500);
$plugin->maturity = MATURITY_STABLE;

0 comments on commit e972bbe

Please sign in to comment.