| Gabor Hojtsy 2004-12-24, 3:55 pm |
| goba Fri Dec 24 05:43:52 2004 EDT
Modified files:
/phpweb/include prepend.inc
Log:
buglet
http://cvs.php.net/diff.php/phpweb/...32&r2=1.33&ty=u
Index: phpweb/include/prepend.inc
diff -u phpweb/include/prepend.inc:1.32 phpweb/include/prepend.inc:1.33
--- phpweb/include/prepend.inc:1.32 Wed Dec 22 12:18:11 2004
+++ phpweb/include/prepend.inc Fri Dec 24 05:43:50 2004
@@ -1,6 +1,6 @@
<?php // -*- C++ -*-
-// $Id: prepend.inc,v 1.32 2004/12/22 17:18:11 goba Exp $
+// $Id: prepend.inc,v 1.33 2004/12/24 10:43:50 goba Exp $
// See http://www.w3.org/Protocols/rfc2616...14.html#sec14.9
// for cache control header descriptions (used in many places on the site).
@@ -157,7 +157,7 @@
global $MYPHPNET;
// Set hiding preference, or return with value
- if (is_int($hide)) {
+ if (is_numeric($hide)) {
$MYPHPNET[3] = $hide;
}
elseif (isset($MYPHPNET[3])) {
|