Skip to content

Commit

Permalink
Fix PHP notices with undefined variables due to commit c0d04c6.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyreese committed Apr 13, 2009
1 parent fd43db3 commit 807d782
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bug_update_advanced_page.php
Expand Up @@ -274,7 +274,7 @@
</select>
</td>

<?php if ( $t_show_platform ) { ?>
<?php if ( $t_show_profiles ) { ?>
<!-- Platform -->
<td class="category">
<?php echo lang_get( 'platform' ) ?>
Expand Down Expand Up @@ -316,7 +316,7 @@

<td colspan="2">&nbsp;</td>

<?php if ( $t_show_platform ) { ?>
<?php if ( $t_show_profiles ) { ?>
<!-- Operating System -->
<td class="category">
<?php echo lang_get( 'os' ) ?>
Expand Down Expand Up @@ -359,7 +359,7 @@
<!-- spacer -->
<td colspan="2">&nbsp;</td>

<?php if ( $t_show_platform ) { ?>
<?php if ( $t_show_profiles ) { ?>
<!-- OS Version -->
<td class="category">
<?php echo lang_get( 'os_version' ) ?>
Expand Down

0 comments on commit 807d782

Please sign in to comment.