Merge branch 'hotfix/0.9.42' into develop

This commit is contained in:
Andy Miller
2015-09-11 16:29:33 -06:00
3 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
# v0.9.42
## 09/11/2015
1. [](#bugfix)
* Fixed `User.authorise()` to be backwards compabile
# v0.9.41
## 09/11/2015

View File

@@ -2,7 +2,7 @@
// Some standard defines
define('GRAV', true);
define('GRAV_VERSION', '0.9.41');
define('GRAV_VERSION', '0.9.42');
define('DS', '/');
// Directories and Paths

View File

@@ -136,6 +136,6 @@ class User extends Data
*/
public function authorise($action)
{
$this->authorize($action);
return $this->authorize($action);
}
}