update_option database spam ‘ig_admin_notices’
-
It looks like it should be updating ig_es_admin_notices and not ig_admin_notices in lite/includes/notices/class-es-admin-notices.php
/** * Store notices to DB */ public static function store_notices() { update_option( 'ig_admin_notices', self::get_notices() ); }
should be:
/** * Store notices to DB */ public static function store_notices() { update_option( 'ig_es_admin_notices', self::get_notices() ); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘update_option database spam ‘ig_admin_notices’’ is closed to new replies.