Changeset 83 for trunk/wp-content/plugins/xpressme/include
- Timestamp:
- Feb 1, 2009, 12:20:33 AM (16 years ago)
- File:
-
- 1 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
Note: See TracChangeset
for help on using the changeset viewer.