Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted December 4, 20231 yr 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.
December 4, 20231 yr Solution 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, 20231 yr by Adriano Faria