"\n"
This commit is contained in:
@@ -8,6 +8,7 @@ $Source$
|
|||||||
2003-04-14 Garvin Hicking <me@supergarv.de>
|
2003-04-14 Garvin Hicking <me@supergarv.de>
|
||||||
* libraries/common.lib.php3: Fixed SHOW TABLE STATUS LIKE ... FROM ...
|
* libraries/common.lib.php3: Fixed SHOW TABLE STATUS LIKE ... FROM ...
|
||||||
usage. (Bug #720846)
|
usage. (Bug #720846)
|
||||||
|
* footer.inc.php3: Needed \n for some cases.
|
||||||
|
|
||||||
2003-04-13 Marc Delisle <lem9@users.sourceforge.net>
|
2003-04-13 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* lang/french: update
|
* lang/french: update
|
||||||
|
@@ -36,10 +36,10 @@ if ($cfg['QueryFrame'] && $cfg['QueryFrameJS']) {
|
|||||||
top.frames.queryframe.querywindow.document.querywindow.table.value = "<?php echo (isset($table) ? htmlspecialchars($table) : '') ?>";
|
top.frames.queryframe.querywindow.document.querywindow.table.value = "<?php echo (isset($table) ? htmlspecialchars($table) : '') ?>";
|
||||||
top.frames.queryframe.querywindow.document.querywindow.query_history_latest_table.value = "<?php echo (isset($table) ? htmlspecialchars($table) : '') ?>";
|
top.frames.queryframe.querywindow.document.querywindow.query_history_latest_table.value = "<?php echo (isset($table) ? htmlspecialchars($table) : '') ?>";
|
||||||
|
|
||||||
<?php echo (isset($sql_query) ? 'top.frames.queryframe.querywindow.document.querywindow.query_history_latest.value = "' . urlencode($sql_query) . '";' : '// no sql query update'); ?>
|
<?php echo (isset($sql_query) ? 'top.frames.queryframe.querywindow.document.querywindow.query_history_latest.value = "' . urlencode($sql_query) . '";' : '// no sql query update') . "\n"; ?>
|
||||||
|
|
||||||
<?php echo ($cfg['QueryFrameDebug'] ? 'alert(\'Querywindow submits. Last chance to check variables.\');' : ''); ?>
|
<?php echo ($cfg['QueryFrameDebug'] ? 'alert(\'Querywindow submits. Last chance to check variables.\');' : '') . "\n"; ?>
|
||||||
<?php echo ((!isset($error_message) || $error_message == '') ? 'top.frames.queryframe.querywindow.document.querywindow.submit();' : '// no submit, query was invalid'); ?>
|
<?php echo ((!isset($error_message) || $error_message == '') ? 'top.frames.queryframe.querywindow.document.querywindow.submit();' : '// no submit, query was invalid') . "\n"; ?>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user