diff options
author | Rasmus Lerdorf <rasmus@as1410.(none)> | 2010-03-02 16:07:35 -0800 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-03-04 23:30:04 -0500 |
commit | 086d517b877f82513bc9f5208580b7d57453a8e2 (patch) | |
tree | 22e251e34ff9677f354622bf5e8474bc0daabeac /scripts | |
parent | dbe6b979d7e07b47aa4cab5c7ccf54d3ba24f319 (diff) |
Fix a few typos
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fixup_utf8.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fixup_utf8.php b/scripts/fixup_utf8.php index 30befadfd..2af6f9cb0 100755 --- a/scripts/fixup_utf8.php +++ b/scripts/fixup_utf8.php @@ -249,7 +249,7 @@ class UTF8FixerUpper $sql = 'SELECT id, fullname, location, description FROM user_group ' . 'WHERE LENGTH(fullname) != CHAR_LENGTH(fullname) '. 'OR LENGTH(location) != CHAR_LENGTH(location) '. - 'OR LENGTH(description) != CHAR_LENGTH(description) '; + 'OR LENGTH(description) != CHAR_LENGTH(description) '. 'AND modified < "'.$this->max_date.'" '. 'ORDER BY modified DESC'; |