Version Description
Minor changes to the readme file.
Download this release
Release Info
Developer | barinagabriel |
Plugin | User registration & user profile – Profile Builder |
Version | 1.1.36 |
Comparing to | |
See all releases |
Code changes from version 1.1.35 to 1.1.36
- index.php +11 -4
- readme.txt +5 -2
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: http://www.cozmoslabs.com/2011/04/12/wordpress-profile-builder-a-front-end-user-registration-login-and-edit-profile-plugin/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 1.1.
|
7 |
Author: Reflection Media, Barina Gabriel
|
8 |
Author URI: http://www.reflectionmedia.ro
|
9 |
License: GPL2
|
@@ -54,7 +54,7 @@ function return_bytes($val) {
|
|
54 |
}
|
55 |
|
56 |
|
57 |
-
define( 'PROFILE_BUILDER_VERSION', '1.1.
|
58 |
define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
59 |
define( 'WPPB_PLUGIN_URL', WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
60 |
define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', return_bytes( ini_get( 'upload_max_filesize') ) );
|
@@ -83,8 +83,15 @@ if (file_exists ( $wppb_premiumAdmin.'premium.class.admin.php' )){
|
|
83 |
$wppb_premiumUpdate = WPPB_PLUGIN_DIR.'/premium/update/';
|
84 |
if (file_exists ($wppb_premiumUpdate.'update-checker.php')){
|
85 |
require ($wppb_premiumUpdate.'update-checker.php');
|
86 |
-
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
|
90 |
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: http://www.cozmoslabs.com/2011/04/12/wordpress-profile-builder-a-front-end-user-registration-login-and-edit-profile-plugin/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 1.1.36
|
7 |
Author: Reflection Media, Barina Gabriel
|
8 |
Author URI: http://www.reflectionmedia.ro
|
9 |
License: GPL2
|
54 |
}
|
55 |
|
56 |
|
57 |
+
define( 'PROFILE_BUILDER_VERSION', '1.1.36' );
|
58 |
define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
59 |
define( 'WPPB_PLUGIN_URL', WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) );
|
60 |
define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', return_bytes( ini_get( 'upload_max_filesize') ) );
|
83 |
$wppb_premiumUpdate = WPPB_PLUGIN_DIR.'/premium/update/';
|
84 |
if (file_exists ($wppb_premiumUpdate.'update-checker.php')){
|
85 |
require ($wppb_premiumUpdate.'update-checker.php');
|
86 |
+
|
87 |
+
if (file_exists ( WPPB_PLUGIN_DIR . '/premium/addons/addon.php' )){
|
88 |
+
$localSerial = get_option( 'wppb_profile_builder_pro_serial' );
|
89 |
+
$wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber='.$localSerial.'&uniqueproduct=RMPB', __FILE__, 'profile-builder-pro-update');
|
90 |
+
|
91 |
+
}else{
|
92 |
+
$localSerial = get_option( 'wppb_profile_builder_hobbyist_serial' );
|
93 |
+
$wppb_update = new wppb_PluginUpdateChecker('http://updatemetadata.cozmoslabs.com/?localSerialNumber='.$localSerial.'&uniqueproduct=RMPBH', __FILE__, 'profile-builder-hobbyist-update');
|
94 |
+
}
|
95 |
}
|
96 |
|
97 |
|
readme.txt
CHANGED
@@ -7,9 +7,9 @@ custom registration, custom registration form, custom registration page, extra u
|
|
7 |
front-end register, front-end registration, frontend edit profile, edit profile
|
8 |
Requires at least: 3.1
|
9 |
Tested up to: 3.5
|
10 |
-
Stable tag: 1.1.
|
11 |
|
12 |
-
Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
|
13 |
|
14 |
== Description ==
|
15 |
|
@@ -93,6 +93,9 @@ This plugin only adds/removes fields in the front-end. The default information-f
|
|
93 |
5. Logged in Page: screenshot7.jpg
|
94 |
|
95 |
== Changelog ==
|
|
|
|
|
|
|
96 |
= 1.1.35 =
|
97 |
Added support for WP 3.5
|
98 |
|
7 |
front-end register, front-end registration, frontend edit profile, edit profile
|
8 |
Requires at least: 3.1
|
9 |
Tested up to: 3.5
|
10 |
+
Stable tag: 1.1.36
|
11 |
|
12 |
+
Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
|
13 |
|
14 |
== Description ==
|
15 |
|
93 |
5. Logged in Page: screenshot7.jpg
|
94 |
|
95 |
== Changelog ==
|
96 |
+
= 1.1.36 =
|
97 |
+
Minor changes to the readme file.
|
98 |
+
|
99 |
= 1.1.35 =
|
100 |
Added support for WP 3.5
|
101 |
|