[geeklog-cvs] geeklog-1.3/public_html lib-common.php,1.390,1.391

vinny at iowaoutdoors.org vinny at iowaoutdoors.org
Sat Oct 23 14:23:14 EDT 2004


Update of /var/cvs/geeklog-1.3/public_html
In directory www:/tmp/cvs-serv11487

Modified Files:
	lib-common.php 
Log Message:
Minor bug in COM_showBlocks, accidently checking isset when should have
been checking !isset.


Index: lib-common.php
===================================================================
RCS file: /var/cvs/geeklog-1.3/public_html/lib-common.php,v
retrieving revision 1.390
retrieving revision 1.391
diff -C2 -d -r1.390 -r1.391
*** lib-common.php	23 Oct 2004 10:25:51 -0000	1.390
--- lib-common.php	23 Oct 2004 18:23:12 -0000	1.391
***************
*** 3651,3655 ****
  
      // Get user preferences on blocks
!     if( isset( $_USER['noboxes'] ) || isset( $_USER['boxes'] ))
      {
          if( !empty( $_USER['uid'] ))
--- 3651,3655 ----
  
      // Get user preferences on blocks
!     if( !isset( $_USER['noboxes'] ) || !isset( $_USER['boxes'] ))
      {
          if( !empty( $_USER['uid'] ))




More information about the geeklog-cvs mailing list