The branch, master has been updated
via d9f7d98039ec4a444e09dcf72938d199253156a5 (commit)
via 7651cef302b3f221da2daf552288016fcb500d3e (commit)
from d032129f8e3d5f3aa1d0efd625c935c82b50f18b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d9f7d98039ec4a444e09dcf72938d199253156a5
Author: Paul Richards <paul@...>
Date: Sun Dec 21 14:01:13 2008 +0000
Fix 0009590: Empty option in email preferences menu breaks XHTML compliance
commit 7651cef302b3f221da2daf552288016fcb500d3e
Author: Paul Richards <paul@...>
Date: Sun Dec 21 12:22:24 2008 +0000
Fix PHP 5 strict error
-----------------------------------------------------------------------
Summary of changes:
account_prefs_inc.php | 18 +++++++++---------
make_captcha_img.php | 2 +-
2 files changed, 10 insertions(+), 10 deletions(-)
-----------------------------------------------------------------------
commit d9f7d98039ec4a444e09dcf72938d199253156a5
Author: Paul Richards <paul@...>
Date: Sun Dec 21 14:01:13 2008 +0000
Fix 0009590: Empty option in email preferences menu breaks XHTML compliance
diff --git a/account_prefs_inc.php b/account_prefs_inc.php
index 320fbd1..81a7c6d 100644
--- a/account_prefs_inc.php
+++ b/account_prefs_inc.php
@@ -143,7 +143,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_new_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_new_min_severity ) ?>
</select>
</td>
@@ -157,7 +157,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_assigned_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_assigned_min_severity ) ?>
</select>
</td>
@@ -171,7 +171,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_feedback_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_feedback_min_severity ) ?>
</select>
</td>
@@ -185,7 +185,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_resolved_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_resolved_min_severity ) ?>
</select>
</td>
@@ -199,7 +199,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_closed_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_closed_min_severity ) ?>
</select>
</td>
@@ -213,7 +213,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_reopened_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_reopened_min_severity ) ?>
</select>
</td>
@@ -227,7 +227,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_bugnote_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_bugnote_min_severity ) ?>
</select>
</td>
@@ -241,7 +241,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_status_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_status_min_severity ) ?>
</select>
</td>
@@ -255,7 +255,7 @@
<?php echo lang_get( 'with_minimum_severity' ) ?>
<select name="email_on_priority_min_severity">
<option value="<?php echo OFF ?>"><?php echo lang_get( 'any' ) ?></option>
- <option value="<?php echo OFF ?>"></option>
+ <option disabled="disabled">-----</option>
<?php print_enum_string_option_list( 'severity', $t_pref->email_on_priority_min_severity ) ?>
</select>
</td>
commit 7651cef302b3f221da2daf552288016fcb500d3e
Author: Paul Richards <paul@...>
Date: Sun Dec 21 12:22:24 2008 +0000
Fix PHP 5 strict error
diff --git a/make_captcha_img.php b/make_captcha_img.php
index c40e516..9114b74 100644
--- a/make_captcha_img.php
+++ b/make_captcha_img.php
@@ -37,7 +37,7 @@
'TTF_RANGE' => array( $t_font_per_captcha )
);
- $captcha =& new masc_captcha( $t_captcha_init );
+ $captcha = new masc_captcha( $t_captcha_init );
$captcha->make_captcha( $t_key );
#
-----------------------------------------------------------------------
--
Mantis Bug Tracker
|