Remove useless isset.

This commit is contained in:
Michal Čihař
2005-10-24 22:15:16 +00:00
parent 8bd9c2c464
commit 97bcf33be6
2 changed files with 3 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ $Source$
2005-10-24 Michal Čihař <michal@cihar.com>
* tbl_properties_operations.php: Fix changing table attributes, reread new
parameters after changing them (bug #1290413).
* main.php: Remove useless isset.
2005-10-23 Marc Delisle <lem9@users.sourceforge.net>
* libraries/relation.lib.php: there is already a function to do this

View File

@@ -519,15 +519,13 @@ if (isset($available_themes_choices) && $available_themes_choices > 1) {
<!-- Theme Manager -->
<tr>
<?php
echo ' ' . ($str_iconic_list != '' ? sprintf($str_iconic_list,$theme_preview_href,'s_theme.png',(isset($strTheme) ? $strTheme : 'Theme (Style)'),'</a>') : $str_normal_list) . "\n";
echo ' ' . ($str_iconic_list != '' ? sprintf($str_iconic_list,$theme_preview_href,'s_theme.png',$strTheme ,'</a>') : $str_normal_list) . "\n";
?>
<td>
<form name="setTheme" method="post" action="index.php" target="_parent">
<?php
echo PMA_generate_common_hidden_inputs('', '', 5);
echo $theme_preview_href
. (isset($strTheme) ? $strTheme : 'Theme (Style)')
. '</a>:' . "\n";
echo $theme_preview_href . $strTheme . '</a>:' . "\n";
?>
<select name="set_theme" dir="ltr" onchange="this.form.submit();" style="vertical-align: middle">
<?php