Skip to content

Commit

Permalink
fixed wrong error string
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Aug 6, 2009
1 parent dd5cb0b commit 45440ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/upgradelib.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class upgrade_exception extends moodle_exception {
function __construct($plugin, $version) {
global $CFG;
$a = (object)array('plugin'=>$plugin, 'version'=>$version);
parent::__construct('upgradeerror', 'error', "$CFG->wwwroot/$CFG->admin/index.php", $a);
parent::__construct('upgradeerror', 'admin', "$CFG->wwwroot/$CFG->admin/index.php", $a);
}
}

Expand Down

0 comments on commit 45440ce

Please sign in to comment.