|
From: Geoffrey T. D. <da...@us...> - 2001-02-15 19:32:13
|
Update of /cvsroot/phpwiki/phpwiki/lib
In directory usw-pr-cvs1:/tmp/cvs-serv14832/lib
Modified Files:
stdlib.php
Log Message:
Minor bug/warning fixes.
Index: stdlib.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/stdlib.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** stdlib.php 2001/02/14 22:02:05 1.31
--- stdlib.php 2001/02/15 19:32:55 1.32
***************
*** 308,312 ****
}
! if ($args['action'] == 'browse')
unset($args['action']);
--- 308,312 ----
}
! if (isset($args['action']) && $args['action'] == 'browse')
unset($args['action']);
|