Update of /cvsroot/binaryphp/binaryphp
In directory sc8-pr-cvs1:/tmp/cvs-serv29477
Modified Files:
php_var.cpp
Log Message:
... missed one
Index: php_var.cpp
===================================================================
RCS file: /cvsroot/binaryphp/binaryphp/php_var.cpp,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** php_var.cpp 17 Aug 2003 20:11:47 -0000 1.28
--- php_var.cpp 17 Aug 2003 20:13:10 -0000 1.29
***************
*** 288,292 ****
ostream &operator<<( ostream &out, const php_var &var )
{
! if(var.type == PHP_ARRAY)
out << "Array";
else
--- 288,292 ----
ostream &operator<<( ostream &out, const php_var &var )
{
! if(var.type.is_array)
out << "Array";
else
|