Changeset 710


Ignore:
Timestamp:
Dec 2, 2019 2:01:15 AM (4 years ago)
Author:
anonymous
Message:
 
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/1.1dev/lib/App.inc.php

    r709 r710  
    214214function setBoomerangURL($url=null, $id=null)
    215215{
    216     // A redirection will never happen immediatly after setting the boomerangURL.
     216    // A redirection will never happen immediately after setting the boomerangURL.
    217217    // Set the time so ensure this doesn't happen. See validBoomerangURL for more.
    218218
  • branches/1.1dev/lib/SpellCheck.inc.php

    r708 r710  
    155155                return true;
    156156            } else {
    157                 logMsg(sprintf('Failed adding "%s" to personal wordlist: %s', $word, $this->getParam('personal_wordlist')), LOG_ERR, __FILE__, __LINE__);
     157                logMsg(sprintf('Failed adding "%s" to personal wordlist: %s', $word, $this->getParam('personal_wordlist')), LOG_NOTICE, __FILE__, __LINE__);
    158158                return false;
    159159            }
  • trunk/lib/SpellCheck.inc.php

    r590 r710  
    221221                return true;
    222222            } else {
    223                 $app->logMsg(sprintf('Failed adding "%s" to personal wordlist: %s', $word, $this->getParam('personal_wordlist')), LOG_WARNING, __FILE__, __LINE__);
     223                $app->logMsg(sprintf('Failed adding "%s" to personal wordlist: %s', $word, $this->getParam('personal_wordlist')), LOG_NOTICE, __FILE__, __LINE__);
    224224                return false;
    225225            }
Note: See TracChangeset for help on using the changeset viewer.