[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2763-g0a63237

The branch, master has been updated via 0a632379c6e002545d9fa4184487e8e77393a26d (commit) from 9b1f8556b978802d67b671f24045672e36908630 (commit) - Log ----------------------------------------------------------------- commit 0a632379c6e002545d9fa4184487e8e77393a26d Author: Michal Čihař <mcihar@novell.com> Date: Wed May 5 15:04:35 2010 +0200 Clarify the code. ----------------------------------------------------------------------- Summary of changes: tbl_indexes.php | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tbl_indexes.php b/tbl_indexes.php index dd44b24..1eda807 100644 --- a/tbl_indexes.php +++ b/tbl_indexes.php @@ -156,9 +156,11 @@ echo PMA_generate_common_hidden_inputs($form_params); <fieldset> <legend> <?php -echo (isset($_REQUEST['create_index']) - ? __('Create a new index') - : __('Modify an index'); +if (isset($_REQUEST['create_index'])) { + echo __('Create a new index'); +} else { + echo __('Modify an index'); +} ?> </legend> hooks/post-receive -- phpMyAdmin
participants (1)
-
Michal Čihař