adaniel         Tue Mar 27 19:17:00 2001 EDT

  Modified files:              
    /php4/pear/HTML     Page.php 
  Log:
  bug fix in toHtml
  
Index: php4/pear/HTML/Page.php
diff -u php4/pear/HTML/Page.php:1.1 php4/pear/HTML/Page.php:1.2
--- php4/pear/HTML/Page.php:1.1 Fri Mar 23 20:36:38 2001
+++ php4/pear/HTML/Page.php     Tue Mar 27 19:16:59 2001
@@ -16,7 +16,7 @@
 // | Authors: Adam Daniel <[EMAIL PROTECTED]>                        |
 // +----------------------------------------------------------------------+
 //
-// $Id: Page.php,v 1.1 2001/03/24 04:36:38 adaniel Exp $
+// $Id: Page.php,v 1.2 2001/03/28 03:16:59 adaniel Exp $
 
 require_once "HTML/Common.php";
 
@@ -99,8 +99,8 @@
             $strHtml .= "<LINK rel=\"stylesheet\" href=\"$strStyleSheet\" 
type=\"text/css\">\n"; 
         }
         for($intCounter=0; $intCounter<count($this->_scripts); $intCounter++) {
-            $strType = $this->_scripts[$intCounter]["TYPE"];
-            $strSrc = $this->_scripts[$intCounter]["SRC"];
+            $strType = $this->_scripts[$intCounter]["type"];
+            $strSrc = $this->_scripts[$intCounter]["src"];
             $strHtml .= "<SCRIPT language=\"$strType\" src=\"$strSrc\"></SCRIPT>\n"; 
         }
         $strHtml .= "</HEAD>\n";



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to