Commit 2cfed124 authored by terry%mozilla.org's avatar terry%mozilla.org

Ignore leading and trailing whitespace when trying to decide if

someone changed something.
parent 95cc6f9b
......@@ -129,6 +129,9 @@ sub CheckCanChangeField {
if ($oldvalue eq $newvalue) {
return 1;
}
if (trim($oldvalue) eq trim($newvalue)) {
return 1;
}
if ($f =~ /^longdesc/) {
return 1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment