Add files via upload

This commit is contained in:
2022-04-19 00:00:54 -07:00
committed by GitHub
parent 8b6bc2ac2d
commit 54a92e9942
2 changed files with 45 additions and 0 deletions

23
plugin.php Normal file
View File

@ -0,0 +1,23 @@
<?php
/*
Plugin Name: Allow Full Stops in Short URLs
Plugin URI: http://sophia.wtf
Description: Allow Full Stops in Short URLs
Version: 1.0
Author: Sophia Atkinson
Author URI: http://sophia.wtf
Plugin Based Off Of William Bargent's Allow Forward Slashes in Short URLs.
*/
if( !defined( 'YOURLS_ABSPATH' ) ) die();
yourls_add_filter( 'get_shorturl_charset', 'full_stop_in_charset' );
function full_stop_in_charset( $in ) {
return $in.'.';
}
//This plugin will work with URL forwarding plugins active!