Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2012-05-24 20:34:15 +0400
committerMarc Delisle <marc@infomarc.info>2012-05-24 20:34:15 +0400
commit5c53fb643a16c8587c797bb0e2ec61bfe38e29af (patch)
treef232da81ad7f26b57b73429c24f4517cd7800abc /sql.php
parent936f2efb7406f178f4906273f8667c53b0370091 (diff)
parent376579c517600bc6c73c2c5a3952e4c1a899626f (diff)
Fix merge conflicts
Diffstat (limited to 'sql.php')
-rw-r--r--sql.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/sql.php b/sql.php
index 9a33f315f7..ed5a76e2cd 100644
--- a/sql.php
+++ b/sql.php
@@ -55,14 +55,12 @@ if (isset($_REQUEST['printview'])) {
}
if (isset($_SESSION['profiling'])) {
- $GLOBALS['js_include'][] = 'highcharts/highcharts.js';
- /* Files required for chart exporting */
- $GLOBALS['js_include'][] = 'highcharts/exporting.js';
/* < IE 9 doesn't support canvas natively */
if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER < 9) {
$GLOBALS['js_include'][] = 'canvg/flashcanvas.js';
}
- $GLOBALS['js_include'][] = 'canvg/canvg.js';
+ $GLOBALS['js_include'][] = 'jqplot/jquery.jqplot.js';
+ $GLOBALS['js_include'][] = 'jqplot/plugins/jqplot.pieRenderer.js';
}
/**
@@ -1023,7 +1021,6 @@ $(makeProfilingChart);
echo '</div>';
//require_once 'libraries/chart.lib.php';
echo '<div id="profilingchart" style="display:none;">';
- //PMA_chart_profiling($profiling_results);
echo json_encode($chart_json);
echo '</div>';
echo '</fieldset>' . "\n";