You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Scenario : you don't want YOURLS to check for version updates (ie stop YOURLS from polling api.yourls.org to see if a new release is available)
Answer : this simple plugin
<?php/*Plugin Name: No Version CheckPlugin URI: https://github.com/YOURLS/YOURLS/issues/2851Description: Stop YOURLS from checking if a new release is availableVersion: 1.0Author: OzhAuthor URI: https://ozh.org/*/// No direct callif( !defined( 'YOURLS_ABSPATH' ) ) die();
yourls_add_filter('shunt_maybe_check_core_version', 'yourls_return_false');
The text was updated successfully, but these errors were encountered:
ozh
added
the
plugin
This is an idea for a plugin. Anyone interested in making it?
label
Feb 27, 2021
Scenario : you don't want YOURLS to check for version updates (ie stop YOURLS from polling api.yourls.org to see if a new release is available)
Answer : this simple plugin
The text was updated successfully, but these errors were encountered: