r1289: Spelling boo boo. "NoTe" not "NoDe".
authorRobert Sesek <rsesek@bluestatic.org>
Thu, 16 Nov 2006 01:57:55 +0000 (01:57 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Thu, 16 Nov 2006 01:57:55 +0000 (01:57 +0000)
docs/changes.txt
search.php

index 3f9517f02207bcc18ae27ed16d0cd98784586dc6..4e356a77deb16dbb63f561f7b7041ea80cf7823c 100644 (file)
@@ -14,6 +14,7 @@
 - Fixed a SQL error that would occur when editing or deleting comments (http://www.bluestatic.org/bugs/showreport.php?bugid=52)
 - Allow administrators to set the default time zone which guests view all times and dates in (http://www.bluestatic.org/bugs/showreport.php?bugid=53)
 - The "[Edit]" and "[Delete]" options for attachments were off by one line (http://www.bluestatic.org/bugs/showreport.php?bugid=56)
+- Fixed a spelling error in search.php when there is no search criteria
 
 1.1.3
 ===============================
index 1b9dd821c4e95c9f7f625492ef776d21698a239d..cc1260f0aa5d1d16d5d973c88fb1c9769f28c997 100644 (file)
@@ -243,7 +243,7 @@ if ($_REQUEST['do'] == 'process')
        // have to search something
        if (sizeof($querybuild) < 1)
        {
-               $message->error(sprintf(_('You have to enter some criteria to search for. Node that words less than %1$d characters are ignored by the search engine (and some other very common words, too).'), SEARCH_WORD_MIN));
+               $message->error(sprintf(_('You have to enter some criteria to search for. Note that words less than %1$d characters are ignored by the search engine (and some other very common words, too).'), SEARCH_WORD_MIN));
        }
        
        // -------------------------------------------------------------------