Changeset 514946
- Timestamp:
- 03/05/2012 09:51:35 PM (14 years ago)
- Location:
- ssi-sumilux/trunk
- Files:
-
- 3 edited
-
SsiUser.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
ssi.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ssi-sumilux/trunk/SsiUser.php
r514184 r514946 44 44 $result = $wpdb->get_results( "SELECT COUNT(*) as cnt FROM $wpdb->users WHERE user_login = '". $user_data['user_login']."' " ); 45 45 46 var_dump($result); 46 47 47 48 if (!empty($result)){ 48 if ($result[0]->cnt){ 49 49 $user_data['user_login'] = $user_data['user_login'] . "-".++$result[0]->cnt; 50 50 } … … 62 62 63 63 $wp_id = wp_insert_user($user_data); 64 var_dump(add_user_meta( $wp_id, 'ssi_uid', $uid, 1 ));64 add_user_meta( $wp_id, 'ssi_uid', $uid, 1 ); 65 65 66 66 return $wp_id; -
ssi-sumilux/trunk/readme.txt
r514184 r514946 5 5 Requires at least: 1.0 6 6 Tested up to: 3.3.1 7 Stable tag: 0.8. 17 Stable tag: 0.8.2 8 8 9 9 This plugin is currently in the experimental stage, we plan to launch it for beta testing in early February, please use with caution. … … 29 29 30 30 == Changelog == 31 =0.8.2= 32 improved user login function 33 31 34 =0.8.1= 32 35 Changed method of authentification. -
ssi-sumilux/trunk/ssi.php
r514184 r514946 4 4 Plugin URI: http://ssi.sumilux.com 5 5 Description: Plugin for Social Sign-In from <a href="http://demo.sumilux.com/ssi">Sumilux</a> 6 Version: 0.8. 16 Version: 0.8.2 7 7 Author: Serhiy Martynenko 8 8 Author URI: [email protected] … … 14 14 define('SSI_TEMPLATES_DIR', SSI_DIR . 'templates/'); 15 15 define("SSI_PLUGIN_URL",WP_PLUGIN_URL.'/'.basename(dirname(__FILE__))); 16 define("SSI_VERSION", "0.8. 1");16 define("SSI_VERSION", "0.8.2"); 17 17 18 18 … … 127 127 128 128 } 129 130 129 131 130
Note: See TracChangeset
for help on using the changeset viewer.