Index: /trunk/wp-content/plugins/xpressme/include/pluggable-override.php
===================================================================
--- /trunk/wp-content/plugins/xpressme/include/pluggable-override.php	(revision 82)
+++ /trunk/wp-content/plugins/xpressme/include/pluggable-override.php	(revision 83)
@@ -114,5 +114,5 @@
 }
 
-
+if ( !function_exists('wp_check_password') ) :
 // for wordpress2.5
 function wp_check_password($password, $hash, $user_id = '') {
@@ -149,5 +149,7 @@
 	return apply_filters('check_password', $check, $password, $hash, $user_id);
 }
+endif;
 
+if ( !function_exists('wp_redirect') ) :
 function wp_redirect($location, $status = 302) {
 	global $is_IIS;
@@ -172,6 +174,7 @@
 	}
 }
+endif;
 
-
+if ( !function_exists('wp_hash_password') ) :
 function wp_hash_password($password) {
 	global $wp_hasher;
@@ -187,5 +190,5 @@
 */
 }
-
+endif;
 // ***********************************  End Of Pluggable Function Edit (wp-include/pluggable.php) ************************************
 
Index: /trunk/wp-content/plugins/xpressme/xpressme.php
===================================================================
--- /trunk/wp-content/plugins/xpressme/xpressme.php	(revision 82)
+++ /trunk/wp-content/plugins/xpressme/xpressme.php	(revision 83)
@@ -17,7 +17,7 @@
 
 $XPressME = new XPressME_Class();
-if (is_xpress_index_page_call()){
-	require_once dirname( __FILE__ ).'/include/pluggable-override.php' ;
-}
+
+require_once dirname( __FILE__ ).'/include/pluggable-override.php' ;
+
 add_action('admin_menu', array(&$XPressME, 'add_option_page'));
 add_action('admin_head', array(&$XPressME, 'add_admin_head'));
