Fixed Broken Shit

This commit is contained in:
2022-10-30 14:32:20 -07:00
parent 7335796263
commit 4dabf5a6bf
635 changed files with 74885 additions and 17688 deletions

View File

@ -0,0 +1,16 @@
<?php
/*
Plugin Name: Change User Agent
Plugin URI: http://yourls.org/
Description: Identify YOURLS as a vanilla mozilla
Version: 1.0
Author: Ozh
Author URI: http://ozh.org/
*/
yourls_add_filter( 'http_user_agent', 'misterfu_useragent' );
// My own UA
function misterfu_useragent() {
return "CodsworthCrawler (SOP.wtf)";
}