Browse Source

Refactor messages class.

Taylor Otwell 13 years ago
parent
commit
6ee6f7ba22
1 changed files with 1 additions and 2 deletions
  1. 1 2
      system/messages.php

+ 1 - 2
system/messages.php

@@ -30,8 +30,7 @@ class Messages {
 	 */
 	public function add($key, $message)
 	{
-		// Make sure the message is not duplicated.
-		if ( ! array_key_exists($key, $this->messages) or ! is_array($this->messages[$key]) or ! in_array($message, $this->messages[$key]))
+		if ( ! isset($this->messages[$key]) or array_search($message, $this->messages[$key]) === false)
 		{
 			$this->messages[$key][] = $message;
 		}