2009-08-14 Miguel de Dios <miguel.dedios@artica.es>
* index.php: add another ob_start for html result is with good order. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1848 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
5fa5172b74
commit
b16aea2530
|
@ -1,4 +1,8 @@
|
||||||
2009-08-11 Miguel de Dios <miguel.dedios@artica.es>
|
2009-08-14 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
|
* index.php: add another ob_start for html result is with good order.
|
||||||
|
|
||||||
|
2009-08-14 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* include/functions_html.php: fixes hidden bug in attribute array list,
|
* include/functions_html.php: fixes hidden bug in attribute array list,
|
||||||
for input text.
|
for input text.
|
||||||
|
|
|
@ -88,13 +88,17 @@ $config["pure"] = (bool) get_parameter ("pure");
|
||||||
// Auto Refresh page (can now be disabled anywhere in the script)
|
// Auto Refresh page (can now be disabled anywhere in the script)
|
||||||
$config["refr"] = (int) get_parameter ("refr");
|
$config["refr"] = (int) get_parameter ("refr");
|
||||||
|
|
||||||
//This starts the page head. In the call back function, things from $page['head'] array will be processed into the head
|
|
||||||
ob_start ('process_page_head');
|
|
||||||
|
|
||||||
|
ob_start ();
|
||||||
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n";
|
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'."\n";
|
||||||
echo '<html xmlns="http://www.w3.org/1999/xhtml">'."\n";
|
echo '<html xmlns="http://www.w3.org/1999/xhtml">'."\n";
|
||||||
echo '<head>';
|
echo '<head>';
|
||||||
|
|
||||||
|
//This starts the page head. In the call back function, things from $page['head'] array will be processed into the head
|
||||||
|
ob_start ('process_page_head');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
enterprise_include ('index.php');
|
enterprise_include ('index.php');
|
||||||
|
|
||||||
//This tag is included in the buffer passed to process_page_head so technically it can be stripped
|
//This tag is included in the buffer passed to process_page_head so technically it can be stripped
|
||||||
|
|
Loading…
Reference in New Issue