Merge branch 'master' of https://github.com/phpmyadmin/phpmyadmin
This commit is contained in:
commit
3ca134c183
@ -20,6 +20,7 @@ phpMyAdmin - ChangeLog
|
||||
+ Patch #3507001 Contest-4: Textarea for large character columns
|
||||
+ Removed the PHP version of the ENUM editor
|
||||
+ Patch #3507111 Display distinct results, linked to corresponding data rows
|
||||
+ Update to jQuery 1.7.2
|
||||
|
||||
3.5.1.0 (not yet released)
|
||||
- bug #3510784 [edit] Limit clause ignored when sort order is remembered
|
||||
|
||||
@ -132,7 +132,7 @@ require 'libraries/header_http.inc.php';
|
||||
// ]]>
|
||||
</script>
|
||||
<?php
|
||||
echo PMA_includeJS('jquery/jquery-1.6.2.js');
|
||||
echo PMA_includeJS('jquery/jquery-1.7.2.js');
|
||||
echo PMA_includeJS('update-location.js');
|
||||
echo PMA_includeJS('common.js');
|
||||
?>
|
||||
|
||||
4435
js/jquery/jquery-1.6.2.js → js/jquery/jquery-1.7.2.js
vendored
4435
js/jquery/jquery-1.6.2.js → js/jquery/jquery-1.7.2.js
vendored
File diff suppressed because it is too large
Load Diff
@ -556,7 +556,7 @@ $_REQUEST['js_frame'] = PMA_ifSetOr($_REQUEST['js_frame'], '');
|
||||
* @global array $js_include
|
||||
*/
|
||||
$GLOBALS['js_include'] = array();
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery-1.6.2.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery-1.7.2.js';
|
||||
$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.16.custom.js';
|
||||
$GLOBALS['js_include'][] = 'update-location.js';
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ if (empty($import_list)) {
|
||||
<iframe id="import_upload_iframe" name="import_upload_iframe" width="1" height="1" style="display: none;"></iframe>
|
||||
<div id="import_form_status" style="display: none;"></div>
|
||||
<div id="importmain">
|
||||
<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" style="display: none;" />
|
||||
<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" width="16" height="16" alt="ajax clock" style="display: none;" />
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
$(document).ready( function() {
|
||||
@ -102,11 +102,9 @@ if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") {
|
||||
?>
|
||||
}); // onclick
|
||||
}); // domready
|
||||
|
||||
document.write('<form action="import.php" method="post" enctype="multipart/form-data" name="import"<?php if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") echo ' target="import_upload_iframe"'; ?>>');
|
||||
//]]>
|
||||
</script>
|
||||
<form action="import.php" method="post" enctype="multipart/form-data" name="import">
|
||||
<form action="import.php" method="post" enctype="multipart/form-data" name="import"<?php if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") echo ' target="import_upload_iframe"'; ?>>
|
||||
<input type="hidden" name="<?php echo $ID_KEY; ?>" value="<?php echo $upload_id ; ?>" />
|
||||
<?php
|
||||
if ($import_type == 'server') {
|
||||
|
||||
@ -100,7 +100,7 @@ require_once 'libraries/header_http.inc.php';
|
||||
<link rel="stylesheet" type="text/css"
|
||||
href="phpmyadmin.css.php?<?php echo PMA_generate_common_url('', ''); ?>&js_frame=left&nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
|
||||
<?php
|
||||
echo PMA_includeJS('jquery/jquery-1.6.2.js');
|
||||
echo PMA_includeJS('jquery/jquery-1.7.2.js');
|
||||
echo PMA_includeJS('jquery/jquery-ui-1.8.16.custom.js');
|
||||
echo PMA_includeJS('jquery/jquery.qtip-1.0.0-rc3.js');
|
||||
echo PMA_includeJS('navigation.js');
|
||||
|
||||
@ -36,7 +36,7 @@ require './libraries/header_http.inc.php';
|
||||
<link href="../favicon.ico" rel="icon" type="image/x-icon" />
|
||||
<link href="../favicon.ico" rel="shortcut icon" type="image/x-icon" />
|
||||
<link href="styles.css" rel="stylesheet" type="text/css" />
|
||||
<script type="text/javascript" src="../js/jquery/jquery-1.6.2.js"></script>
|
||||
<script type="text/javascript" src="../js/jquery/jquery-1.7.2.js"></script>
|
||||
<script type="text/javascript" src="../js/jquery/jquery-ui-1.8.16.custom.js"></script>
|
||||
<script type="text/javascript" src="../js/jquery/jquery.json-2.2.js"></script>
|
||||
<script type="text/javascript" src="../js/config.js"></script>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user