From: CiaranG Date: Wed, 11 Mar 2009 09:12:39 +0000 (+0000) Subject: Correction to recently added dupe-checking feature - was using wrong config value X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b9194e792369506cd2514dcad3e26ce483e6b72d;p=quix0rs-gnu-social.git Correction to recently added dupe-checking feature - was using wrong config value --- diff --git a/classes/Notice.php b/classes/Notice.php index ac4db944f2..1e3b330f26 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -232,7 +232,7 @@ class Notice extends Memcached_DataObject $notice = new Notice(); $notice->profile_id = $profile_id; $notice->content = $content; - $notice->whereAdd('now() - created < ' . common_config('notice', 'dupelimit')); + $notice->whereAdd('now() - created < ' . common_config('site', 'dupelimit')); $cnt = $notice->count(); return ($cnt == 0); }