Changeset 39345
- Timestamp:
- 04/08/08 22:31:16 (3 months ago)
- Files:
-
- wordpress-mobile-edition/trunk/wp-mobile.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wordpress-mobile-edition/trunk/wp-mobile.php
r37002 r39345 21 21 Author: Alex King 22 22 Author URI: http://alexking.org 23 Version: 2.1 23 Version: 2.1a 24 24 */ 25 25 … … 70 70 ,'EudoraWeb' 71 71 ,'hiptop' 72 ,'IEMobile' 72 73 ,'KYOCERA/WX310K' 73 74 ,'LG/U990' … … 114 115 ,'wp-login.php' 115 116 ); 116 foreach ($pages_to_exclude as $exclude ) {117 if (strstr(strtolower($_SERVER['REQUEST_URI']), $exclude )) {117 foreach ($pages_to_exclude as $exclude_page) { 118 if (strstr(strtolower($_SERVER['REQUEST_URI']), $exclude_page)) { 118 119 $exclude = true; 119 120 } … … 133 134 function akm_installed() { 134 135 return is_dir(ABSPATH.'/wp-content/themes/wp-mobile'); 135 }136 137 function akm_misinstalled($content) {138 return $content.'<p>WordPress Mobile Edition has been incorrectly installed. Please follow the steps in the README to install it correctly or disable the plugin.</p>';139 136 } 140 137
