From 1d7d852ddd08dcbd54a25cbdde8cb1fcbe378e63 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Fri, 30 May 2014 16:56:41 +0200 Subject: [PATCH] Changed error to notice --- php/modules/Photo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/modules/Photo.php b/php/modules/Photo.php index d141a79..1aeaaa2 100755 --- a/php/modules/Photo.php +++ b/php/modules/Photo.php @@ -720,7 +720,7 @@ class Photo extends Module { $tags = preg_replace('/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/', ',', $tags); $tags = preg_replace('/,$|^,|(\ ){0,}$/', '', $tags); if (strlen($tags)>1000) { - Log::error($this->database, __METHOD__, __LINE__, 'Length of tags higher than 1000'); + Log::notice($this->database, __METHOD__, __LINE__, 'Length of tags higher than 1000'); return false; }