diff --git a/db_designer.php b/db_designer.php index 23d5a3fb6c..183e26c4b3 100644 --- a/db_designer.php +++ b/db_designer.php @@ -169,4 +169,4 @@ if (isset($_REQUEST['query'])) { $response->addHTML(PMA_getQueryDetails()); } -$response->addHTML(PMA_getCacheImages()); +$response->addHTML('
'); diff --git a/libraries/db_designer.lib.php b/libraries/db_designer.lib.php index e1c6e87dc0..8c81d0e136 100644 --- a/libraries/db_designer.lib.php +++ b/libraries/db_designer.lib.php @@ -1380,27 +1380,4 @@ function PMA_getQueryDetails() return $html; } -/** - * Return HTML to fetch some images eagerly. - * - * @return string html - */ -function PMA_getCacheImages() -{ - $html = ''; - $html .= ''; - $html .= ''; - $html .= ''; - $html .= '
'; - - return $html; -} ?>