js problem with OmniWeb

This commit is contained in:
Marc Delisle
2002-07-15 16:47:36 +00:00
parent 42c958fe0b
commit fd2ef01a11
2 changed files with 2 additions and 1 deletions

View File

@@ -15,6 +15,7 @@ $Source$
* libraries/charset_conversion.lib.php3: remove the "@" before dl() * libraries/charset_conversion.lib.php3: remove the "@" before dl()
because multithreaded servers don't support dl(), and we want because multithreaded servers don't support dl(), and we want
to see the error message, thanks to /Leblanc 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> 2002-07-14 Marc Delisle <lem9@users.sourceforge.net>

View File

@@ -133,7 +133,7 @@ $title .= (empty($title) ? '' : ' - ') . 'phpMyAdmin ' . PMA_VERSION;
<script type="text/javascript" language="javascript"> <script type="text/javascript" language="javascript">
<!-- <!--
// Updates the title of the frameset if possible (ns4 does not allow this) // 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; ?>'; parent.document.title = '<?php echo $title; ?>';
} }
<?php <?php