aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2011-09-05 21:32:36 -0700
committerBrett Profitt <brett.profitt@gmail.com>2011-09-05 21:32:36 -0700
commit4144076f40185ff6fdb0f14441d88e6c700f1e85 (patch)
tree14a49b9511d5a38623d0ca530368ccf1b2f1960e
parent9ecdbc2f6e29ea63e82ea5d2b776b4c080c717f7 (diff)
downloadelgg-4144076f40185ff6fdb0f14441d88e6c700f1e85.tar.gz
elgg-4144076f40185ff6fdb0f14441d88e6c700f1e85.tar.bz2
Fixed a stupid problem I introduced in the installation and only just caught >:O
-rw-r--r--CHANGES.txt3
-rw-r--r--engine/lib/access.php7
-rw-r--r--version.php2
3 files changed, 8 insertions, 4 deletions
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';