Update of /cvsroot/phpwebapp/web_app/parser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6140/parser
Modified Files:
Tag: phpwebapp-1_0
class.WebPage.php
Log Message:
fix
Index: class.WebPage.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebPage.php,v
retrieving revision 1.8.2.1
retrieving revision 1.8.2.2
diff -C2 -d -r1.8.2.1 -r1.8.2.2
*** class.WebPage.php 8 Oct 2004 10:12:56 -0000 1.8.2.1
--- class.WebPage.php 11 Oct 2004 09:53:20 -0000 1.8.2.2
***************
*** 222,226 ****
$url = $data['url'];
$features = $data['features'];
! $js .= " $name = window.open('$url', '$name', '$features');\n";
}
$js .= "</script>\n";
--- 222,229 ----
$url = $data['url'];
$features = $data['features'];
! if ($features==UNDEFINED)
! $js .= " $name = window.open('$url', '$name');\n";
! else
! $js .= " $name = window.open('$url', '$name', '$features');\n";
}
$js .= "</script>\n";
|