Ignore leading and trailing whitespace when trying to decide if

someone changed something.


git-svn-id: svn://10.0.0.236/trunk@61198 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%mozilla.org
2000-02-17 15:11:37 +00:00
parent abd1d1a770
commit c89b3577c6

View File

@@ -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;
}