Bug #743956, thanks to Virgile Petit

This commit is contained in:
Garvin Hicking
2003-05-28 10:15:08 +00:00
parent c2e8c12b58
commit 8cef5ec8ec
2 changed files with 3 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ $Source$
the PEAR library and PHP changed the way how referenced variables
get accessed, we have to pre-initialize the array and submit that
to the PEAR call() funktion.
* index.php3: Bug #743856. Fixed trinary operator, thanks to Virgile
Petit!
2003-05-26 Michal Cihar <nijel@users.sourceforge.net>
* lang/czech: sorted.

View File

@@ -98,7 +98,7 @@ if ($cfg['QueryFrame']) {
echo '<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*">' . "\n";
echo ' <frame src="left.php3?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="nav" frameborder="0" />' . "\n";
echo ' <frame src="' . (empty($db)) ? 'main.php3' : $cfg['DefaultTabDatabase'] . '?' . $url_query . '" name="phpmain' . $phpmain_hash . '" frameborder="1" />' . "\n";
echo ' <frame src="' . (empty($db) ? 'main.php3' : $cfg['DefaultTabDatabase']) . '?' . $url_query . '" name="phpmain' . $phpmain_hash . '" frameborder="1" />' . "\n";
}
?>