Changeset 986838
- Timestamp:
- 09/10/2014 10:56:08 PM (12 years ago)
- Location:
- simple-mobile-url-redirect
- Files:
-
- 3 added
- 2 edited
-
tags/1.6.1 (added)
-
tags/1.6.1/mobile-redirect.php (added)
-
tags/1.6.1/readme.txt (added)
-
trunk/mobile-redirect.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-mobile-url-redirect/trunk/mobile-redirect.php
r985612 r986838 4 4 Description: Select a URL to point mobile users to 5 5 Author: Ozette Plugins 6 Version: 1.6 6 Version: 1.6.1 7 7 Author URI: http://ozette.com/ 8 8 */ … … 41 41 add_action( 'admin_init', array( &$this, 'admin_init' ) ); 42 42 add_action( 'admin_menu', array( &$this, 'admin_menu' ) ); 43 add_action( ' plugins_loaded', array( &$this, 'template_redirect' ) ); //fix from amclin43 add_action( 'template_redirect', array( &$this, 'template_redirect' ) ); //fix from amclin 44 44 if ( get_option( 'mobileredirecttoggle' ) == 'true' ) 45 45 update_option( 'mobileredirecttoggle', true ); … … 186 186 return; 187 187 } 188 188 189 if( get_option('mobileredirecthome') == 1){ 189 if( ! is_front_page() ) 190 return; 190 if( ! is_front_page() ) return; 191 191 } 192 192 -
simple-mobile-url-redirect/trunk/readme.txt
r985612 r986838 5 5 Requires at least: 3.4 6 6 Tested up to: 4.0 7 Stable tag: 1.6 7 Stable tag: 1.6.1 8 8 9 9 This plugin allows you to put in a full path URL to redirect mobile traffic to. … … 46 46 47 47 == Changelog == 48 49 = 1.6.1 = 50 * Reverted a fix that broke redirect home page only 48 51 49 52 = 1.6 =
Note: See TracChangeset
for help on using the changeset viewer.