js problem with OmniWeb
This commit is contained in:
@@ -15,6 +15,7 @@ $Source$
|
||||
* libraries/charset_conversion.lib.php3: remove the "@" before dl()
|
||||
because multithreaded servers don't support dl(), and we want
|
||||
to see the error message, thanks to /Leblanc
|
||||
* header.inc.php3: js error with OmniWeb, thanks to Loic
|
||||
|
||||
|
||||
2002-07-14 Marc Delisle <lem9@users.sourceforge.net>
|
||||
|
@@ -133,7 +133,7 @@ $title .= (empty($title) ? '' : ' - ') . 'phpMyAdmin ' . PMA_VERSION;
|
||||
<script type="text/javascript" language="javascript">
|
||||
<!--
|
||||
// Updates the title of the frameset if possible (ns4 does not allow this)
|
||||
if (typeof(parent.document.title) == 'string') {
|
||||
if (typeof(parent.document) != 'undefined' && typeof(parent.document.title) == 'string') {
|
||||
parent.document.title = '<?php echo $title; ?>';
|
||||
}
|
||||
<?php
|
||||
|
Reference in New Issue
Block a user