]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixed a stupid problem I introduced in the installation and only just caught >:O
authorBrett Profitt <brett.profitt@gmail.com>
Tue, 6 Sep 2011 04:32:36 +0000 (21:32 -0700)
committerBrett Profitt <brett.profitt@gmail.com>
Tue, 6 Sep 2011 04:32:36 +0000 (21:32 -0700)
CHANGES.txt
engine/lib/access.php
version.php

index cccd75d5ed128fb2006a312ea8fe5f55850ffd16..2df4d26372249526e9945abb54a2f5ddbd0c52ac 100644 (file)
@@ -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:
 
index 678c9e77bbb339014f7303577ef8bbc7381ef07d..6da747463a550157a3bc9b08bf8c9a9abc3d9d12 100644 (file)
@@ -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;
 
index 932d31961efa4762fd354ac576b966a34f2cb922..5bc115d35f03f2dbbf6099a13f4e9b8cf97393b3 100644 (file)
@@ -14,4 +14,4 @@
 $version = 2011061200;
 
 // Human-friendly version name
-$release = '1.8.0';
+$release = '1.8.0.1';