]> CyberLeo.Net >> Repos - Github/YOURLS.git/blob - user/plugins/hyphens-in-urls/plugin.php
Fix end of line
[Github/YOURLS.git] / user / plugins / hyphens-in-urls / plugin.php
1 <?php
2 /*
3 Plugin Name: Allow Hyphens in Short URLs
4 Plugin URI: http://yourls.org/
5 Description: Allow hyphens in short URLs (like <tt>http://sho.rt/hello-world</tt>)
6 Version: 1.0
7 Author: Ozh
8 Author URI: http://ozh.org/
9 */
10
11 // No direct call
12 if( !defined( 'YOURLS_ABSPATH' ) ) die();
13
14 yourls_add_filter( 'get_shorturl_charset', 'ozh_hyphen_in_charset' );
15 function ozh_hyphen_in_charset( $in ) {
16         return $in.'-';
17 }
18
19