Update of /cvsroot/phpwebapp/web_app/parser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3751
Modified Files:
class.WebPage.php
Log Message:
bugfix
Index: class.WebPage.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebPage.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** class.WebPage.php 6 Jul 2005 06:13:16 -0000 1.19
--- class.WebPage.php 7 Jul 2005 07:08:40 -0000 1.20
***************
*** 257,261 ****
$js .= " $name.document.close();";
}
! $js .= " $name.location.href=\"$url\";";
}
$js .= "</script>\n";
--- 257,264 ----
$js .= " $name.document.close();";
}
! if ($url!='')
! {
! $js .= " $name.location.href=\"$url\";";
! }
}
$js .= "</script>\n";
|