From: Brett Profitt Date: Tue, 6 Sep 2011 04:32:36 +0000 (-0700) Subject: Fixed a stupid problem I introduced in the installation and only just caught >:O X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=4144076f40185ff6fdb0f14441d88e6c700f1e85;p=lorea%2Felgg.git Fixed a stupid problem I introduced in the installation and only just caught >:O --- diff --git a/CHANGES.txt b/CHANGES.txt index cccd75d5e..2df4d2637 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -73,6 +73,9 @@ Version 1.8.0 (Jackie) core. The original dashboard can be restored by the new Dashboard plugin. * twitter_service - Replaced by Twitter API. + Elgg 1.8.0.1 was released immediately after 1.8.0 to correct a problem in + installation. + Previous and Merged Changes: diff --git a/engine/lib/access.php b/engine/lib/access.php index 678c9e77b..6da747463 100644 --- a/engine/lib/access.php +++ b/engine/lib/access.php @@ -961,9 +961,10 @@ function elgg_override_permissions_hook($hook, $type, $value, $params) { $user = elgg_get_logged_in_user_entity(); } - if (!$user instanceof ElggUser) { - return false; - } + // don't do this so ignore access still works. +// if (!$user instanceof ElggUser) { +// return false; +// } $user_guid = $user->guid; diff --git a/version.php b/version.php index 932d31961..5bc115d35 100644 --- a/version.php +++ b/version.php @@ -14,4 +14,4 @@ $version = 2011061200; // Human-friendly version name -$release = '1.8.0'; +$release = '1.8.0.1';