Remove useless isset.
This commit is contained in:
@@ -8,6 +8,7 @@ $Source$
|
|||||||
2005-10-24 Michal Čihař <michal@cihar.com>
|
2005-10-24 Michal Čihař <michal@cihar.com>
|
||||||
* tbl_properties_operations.php: Fix changing table attributes, reread new
|
* tbl_properties_operations.php: Fix changing table attributes, reread new
|
||||||
parameters after changing them (bug #1290413).
|
parameters after changing them (bug #1290413).
|
||||||
|
* main.php: Remove useless isset.
|
||||||
|
|
||||||
2005-10-23 Marc Delisle <lem9@users.sourceforge.net>
|
2005-10-23 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/relation.lib.php: there is already a function to do this
|
* libraries/relation.lib.php: there is already a function to do this
|
||||||
|
6
main.php
6
main.php
@@ -519,15 +519,13 @@ if (isset($available_themes_choices) && $available_themes_choices > 1) {
|
|||||||
<!-- Theme Manager -->
|
<!-- Theme Manager -->
|
||||||
<tr>
|
<tr>
|
||||||
<?php
|
<?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>
|
<td>
|
||||||
<form name="setTheme" method="post" action="index.php" target="_parent">
|
<form name="setTheme" method="post" action="index.php" target="_parent">
|
||||||
<?php
|
<?php
|
||||||
echo PMA_generate_common_hidden_inputs('', '', 5);
|
echo PMA_generate_common_hidden_inputs('', '', 5);
|
||||||
echo $theme_preview_href
|
echo $theme_preview_href . $strTheme . '</a>:' . "\n";
|
||||||
. (isset($strTheme) ? $strTheme : 'Theme (Style)')
|
|
||||||
. '</a>:' . "\n";
|
|
||||||
?>
|
?>
|
||||||
<select name="set_theme" dir="ltr" onchange="this.form.submit();" style="vertical-align: middle">
|
<select name="set_theme" dir="ltr" onchange="this.form.submit();" style="vertical-align: middle">
|
||||||
<?php
|
<?php
|
||||||
|
Reference in New Issue
Block a user