Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv32466
Modified Files:
compat.php
Log Message:
Fix the cookie-typo, thanks Jez :)
Index: compat.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/compat.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- compat.php 4 Jan 2004 01:06:30 -0000 1.9
+++ compat.php 12 Jan 2004 17:47:38 -0000 1.10
@@ -67,8 +67,8 @@
array_walk($_POST, 'serendipity_strip_quotes');
}
- if (@count($_COOKIES)) {
- array_walk($_COOKIES, 'serendipity_strip_quotes');
+ if (@count($_COOKIE)) {
+ array_walk($_COOKIE, 'serendipity_strip_quotes');
}
if (@count($_FILES)) {
|