Update of /cvsroot/phpwebapp/web_app/parser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5476/parser
Modified Files:
class.WebPage.php
Log Message:
fix
Index: class.WebPage.php
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebPage.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** class.WebPage.php 8 Oct 2004 10:01:55 -0000 1.14
--- class.WebPage.php 11 Oct 2004 09:50:52 -0000 1.15
***************
*** 234,238 ****
$url = $data['url'];
$features = $data['features'];
! $js .= " $name = window.open('$url', '$name', '$features');\n";
}
$js .= "</script>\n";
--- 234,241 ----
$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";
|