Changeset 83 for trunk/wp-content/plugins/xpressme
- Timestamp:
- Feb 1, 2009, 12:20:33 AM (16 years ago)
- Location:
- trunk/wp-content/plugins/xpressme
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/include/pluggable-override.php
r71 r83 114 114 } 115 115 116 116 if ( !function_exists('wp_check_password') ) : 117 117 // for wordpress2.5 118 118 function wp_check_password($password, $hash, $user_id = '') { … … 149 149 return apply_filters('check_password', $check, $password, $hash, $user_id); 150 150 } 151 endif; 151 152 153 if ( !function_exists('wp_redirect') ) : 152 154 function wp_redirect($location, $status = 302) { 153 155 global $is_IIS; … … 172 174 } 173 175 } 176 endif; 174 177 175 178 if ( !function_exists('wp_hash_password') ) : 176 179 function wp_hash_password($password) { 177 180 global $wp_hasher; … … 187 190 */ 188 191 } 189 192 endif; 190 193 // *********************************** End Of Pluggable Function Edit (wp-include/pluggable.php) ************************************ 191 194 -
trunk/wp-content/plugins/xpressme/xpressme.php
r78 r83 17 17 18 18 $XPressME = new XPressME_Class(); 19 if (is_xpress_index_page_call()){ 20 21 } 19 20 require_once dirname( __FILE__ ).'/include/pluggable-override.php' ; 21 22 22 add_action('admin_menu', array(&$XPressME, 'add_option_page')); 23 23 add_action('admin_head', array(&$XPressME, 'add_admin_head'));
Note: See TracChangeset
for help on using the changeset viewer.