patch #1611684 part 2, other issues with the caching of phpmyadmin.css.php
This commit is contained in:
@@ -8,6 +8,9 @@ $HeadURL$
|
|||||||
2006-12-20 Marc Delisle <lem9@users.sourceforge.net>
|
2006-12-20 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/export/sql.php: bug #1619647, export of query results
|
* libraries/export/sql.php: bug #1619647, export of query results
|
||||||
should not contain procedure definitions
|
should not contain procedure definitions
|
||||||
|
* navigation.php, test/theme.php, browse_foreigners.php,
|
||||||
|
libraries/header_printview.inc.php: patch #1611684 part 2, client
|
||||||
|
caching of phpmyadmin.css.php, thanks to Christian Schmidt
|
||||||
|
|
||||||
2006-12-19 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
2006-12-19 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||||
* tbl_change.php, tbl_replace.php, include/tbl_replace_fields.inc.php:
|
* tbl_change.php, tbl_replace.php, include/tbl_replace_fields.inc.php:
|
||||||
|
@@ -93,7 +93,7 @@ if (isset($disp_row) && is_array($disp_row)) {
|
|||||||
<title>phpMyAdmin</title>
|
<title>phpMyAdmin</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
|
||||||
<link rel="stylesheet" type="text/css"
|
<link rel="stylesheet" type="text/css"
|
||||||
href="./css/phpmyadmin.css.php?<?php echo PMA_generate_common_url( '', '' ); ?>&js_frame=right" />
|
href="./css/phpmyadmin.css.php?<?php echo PMA_generate_common_url( '', '' ); ?>&js_frame=right&nocache=<?php echo $_SESSION['PMA_Config']->getMtime(); ?>" />
|
||||||
<script src="./js/functions.js" type="text/javascript" language="javascript"></script>
|
<script src="./js/functions.js" type="text/javascript" language="javascript"></script>
|
||||||
<script type="text/javascript" language="javascript">
|
<script type="text/javascript" language="javascript">
|
||||||
//<![CDATA[
|
//<![CDATA[
|
||||||
|
@@ -46,7 +46,7 @@ if ($text_dir == 'ltr') {
|
|||||||
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
|
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
|
||||||
<title><?php echo $strSQLResult; ?> - phpMyAdmin <?php echo PMA_VERSION ?></title>
|
<title><?php echo $strSQLResult; ?> - phpMyAdmin <?php echo PMA_VERSION ?></title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
|
||||||
<link rel="stylesheet" type="text/css" href="./css/phpmyadmin.css.php?<?php echo PMA_generate_common_url( '', '' ); ?>&js_frame=print" />
|
<link rel="stylesheet" type="text/css" href="./css/phpmyadmin.css.php?<?php echo PMA_generate_common_url( '', '' ); ?>&js_frame=print&nocache=<?php echo $_SESSION['PMA_Config']->getMtime(); ?>" />
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@@ -130,7 +130,7 @@ require_once './libraries/header_http.inc.php';
|
|||||||
content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
|
content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
|
||||||
<base target="frame_content" />
|
<base target="frame_content" />
|
||||||
<link rel="stylesheet" type="text/css"
|
<link rel="stylesheet" type="text/css"
|
||||||
href="./css/phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&js_frame=left" />
|
href="./css/phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&js_frame=left&nocache=<?php echo $_SESSION['PMA_Config']->getMtime(); ?>" />
|
||||||
<script type="text/javascript" src="js/navigation.js"></script>
|
<script type="text/javascript" src="js/navigation.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
// <![CDATA[
|
// <![CDATA[
|
||||||
|
@@ -31,7 +31,7 @@ header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
|
|||||||
<meta http-equiv="Content-Type"
|
<meta http-equiv="Content-Type"
|
||||||
content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
|
content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
|
||||||
<link rel="stylesheet" type="text/css"
|
<link rel="stylesheet" type="text/css"
|
||||||
href="../css/phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&js_frame=right" />
|
href="../css/phpmyadmin.css.php?<?php echo PMA_generate_common_url(); ?>&js_frame=right&nocache=<?php echo $_SESSION['PMA_Config']->getMtime(); ?>" />
|
||||||
<link rel="stylesheet" type="text/css" media="print"
|
<link rel="stylesheet" type="text/css" media="print"
|
||||||
href="../css/print.css?<?php echo PMA_generate_common_url(); ?>" />
|
href="../css/print.css?<?php echo PMA_generate_common_url(); ?>" />
|
||||||
<script src="../js/functions.js" type="text/javascript"
|
<script src="../js/functions.js" type="text/javascript"
|
||||||
|
Reference in New Issue
Block a user