tags 379734 -pending thanks Hello,
My previous NMU contained a regression from one backported security fix which depended on a not-yet-exising function. This was done correctly in stable but appearently I missed this in sid. The attached diff is for the NMU to fix that regression. Thijs
diff -u mantis-0.19.4/manage_user_page.php mantis-0.19.4/manage_user_page.php
--- mantis-0.19.4/manage_user_page.php
+++ mantis-0.19.4/manage_user_page.php
@@ -30,11 +30,7 @@
$t_lock_image = '<img src="' . config_get( 'icon_path' ) . 'protected.gif" width="8" height="15" border="0" alt="' . lang_get( 'protected' ) . '" />';
# Clean up the form variables
- if ( ! in_array( $f_sort, db_field_names( $t_user_table ) ) ) {
- $c_sort = 'username';
- } else {
- $c_sort = addslashes($f_sort);
- }
+ $c_sort = addslashes($f_sort);
if ($f_dir == 'ASC') {
$c_dir = 'ASC';
diff -u mantis-0.19.4/debian/changelog mantis-0.19.4/debian/changelog
--- mantis-0.19.4/debian/changelog
+++ mantis-0.19.4/debian/changelog
@@ -1,3 +1,12 @@
+mantis (0.19.4-3.2) unstable; urgency=low
+
+ * Non-maintainer upload to fix regression in previous NMU.
+ * Do not use not-yet-existant db_field_names function in
+ backported security fix (Closes: #379734, thanks
+ Martin von Oertzen).
+
+ -- Thijs Kinkhorst <[EMAIL PROTECTED]> Tue, 25 Jul 2006 13:49:20 +0200
+
mantis (0.19.4-3.1) unstable; urgency=high
* Non-maintainer upload for security issues.
signature.asc
Description: This is a digitally signed message part

