These images does not seem to be used

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2015-04-30 18:45:59 +05:30
parent 82b8b628a9
commit 4ab6f29302
2 changed files with 1 additions and 24 deletions

View File

@ -169,4 +169,4 @@ if (isset($_REQUEST['query'])) {
$response->addHTML(PMA_getQueryDetails());
}
$response->addHTML(PMA_getCacheImages());
$response->addHTML('<div id="PMA_disable_floating_menubar"></div>');

View File

@ -1380,27 +1380,4 @@ function PMA_getQueryDetails()
return $html;
}
/**
* Return HTML to fetch some images eagerly.
*
* @return string html
*/
function PMA_getCacheImages()
{
$html = '<img src="';
$html .= $_SESSION['PMA_Theme']->getImgPath('pmd/2leftarrow_m.png');
$html .= '" width="0" height="0" alt="" />';
$html .= '<img src="';
$html .= $_SESSION['PMA_Theme']->getImgPath('pmd/rightarrow1.png');
$html .= '" width="0" height="0" alt="" />';
$html .= '<img src="';
$html .= $_SESSION['PMA_Theme']->getImgPath('pmd/rightarrow2.png');
$html .= '" width="0" height="0" alt="" />';
$html .= '<img src="';
$html .= $_SESSION['PMA_Theme']->getImgPath('pmd/uparrow2_m.png');
$html .= '" width="0" height="0" alt="" />';
$html .= '<div id="PMA_disable_floating_menubar"></div>';
return $html;
}
?>