[Rt-commit] [svn] r1965 - in rt/branches/3.3-TESTING: . html/Search
jesse at pallas.eruditorum.org
jesse at pallas.eruditorum.org
Tue Dec 7 15:16:59 EST 2004
Author: jesse
Date: Tue Dec 7 15:16:58 2004
New Revision: 1965
Modified:
rt/branches/3.3-TESTING/ (props changed)
rt/branches/3.3-TESTING/html/Search/Build.html
Log:
r9519 at tinbook: jesse | 2004-12-07T20:14:22.950883Z
The "toggle AND/OR" button in the query builder broke in 3.3.10 or so. Reported by Wilson Chow
Modified: rt/branches/3.3-TESTING/html/Search/Build.html
==============================================================================
--- rt/branches/3.3-TESTING/html/Search/Build.html (original)
+++ rt/branches/3.3-TESTING/html/Search/Build.html Tue Dec 7 15:16:58 2004
@@ -392,11 +392,9 @@
my $ea;
if (@current_values) {
foreach my $value (@current_values) {
- my $value = $value->getNodeValue();
my $parent = $value->getParent();
- my $parentvalue = $parent->getNodeValue();
- if ( $parentvalue eq 'AND') {
+ if ( $parent->getNodeValue eq 'AND') {
$parent->setNodeValue('OR');
}
else {
More information about the Rt-commit
mailing list