Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
opentype Posted December 4, 2023 Posted December 4, 2023 Anyone knows where this counter is stored in the database? With the Marketplace being removed and the plugins not having an update URL, this notification would stay there forever. I already cleared the update data in the plugins table, but the counter seems to be stored somewhere else.
Solution Adriano Faria Posted December 4, 2023 Solution Posted December 4, 2023 (edited) Clear the cache. case 'plugins': foreach( \IPS\Plugin::plugins() as $plugin ) { if( $plugin->update_check_data ) { $data = json_decode( $plugin->update_check_data, TRUE ); if( !empty( $data['longversion'] ) AND $data['longversion'] > $plugin->version_long ) { $count++; } } } break; \IPS\Data\Store::i()->$key = $count; return (int) \IPS\Data\Store::i()->$key; } Edited December 4, 2023 by Adriano Faria opentype 1
Recommended Posts