Manage empty target.

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
This commit is contained in:
Hugues Peccatte 2015-01-11 16:52:08 +01:00
parent 6faf390f48
commit d7d260f5fd

View File

@ -3197,7 +3197,7 @@ class PMA_Util
'db_search.php' => __('Search'),
'db_operations.php' => __('Operations'),
);
return $mapping[$target];
return isset($mapping[$target]) ? $mapping[$target] : false;
}
/**