[pLog-svn] r5272 - plugins/branches/lifetype-1.1/hostblock/class/view

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Wed Apr 4 08:53:54 EDT 2007


Author: jondaley
Date: 2007-04-04 08:53:54 -0400 (Wed, 04 Apr 2007)
New Revision: 5272

Modified:
   plugins/branches/lifetype-1.1/hostblock/class/view/adminblockedhostsview.class.php
Log:
fixed the previous fix, so now hosts that are blocked globally for ACCESS will show up on the admin page

Modified: plugins/branches/lifetype-1.1/hostblock/class/view/adminblockedhostsview.class.php
===================================================================
--- plugins/branches/lifetype-1.1/hostblock/class/view/adminblockedhostsview.class.php	2007-04-03 21:48:33 UTC (rev 5271)
+++ plugins/branches/lifetype-1.1/hostblock/class/view/adminblockedhostsview.class.php	2007-04-04 12:53:54 UTC (rev 5272)
@@ -22,7 +22,7 @@
         	// get the content that has been filtered by this blog
             $blockedHosts = new BlockedHosts();
             $hostsBlockedFromPosting = $blockedHosts->getGlobalBlacklist( BLOCK_COMMENT_POSTING );
-            $hostsBlocked = $blockedHosts->getBlogBlacklist( BLOCK_ACCESS );
+            $hostsBlocked = $blockedHosts->getGlobalBlacklist( BLOCK_ACCESS );
 
             $blogBlockedHosts = array_merge( $hostsBlockedFromPosting, $hostsBlocked );
 



More information about the pLog-svn mailing list