Version Description
- Minor Bugs Fixed
Download this release
Release Info
Developer | contact-banker |
Plugin | Contact Bank: WordPress Form Builder for Contact Forms |
Version | 2.0.107 |
Comparing to | |
See all releases |
Code changes from version 2.0.106 to 2.0.107
- contact-bank.php +1 -1
- includes/cb_checkbox.php +3 -2
- includes/cb_dropdown.php +6 -5
- includes/cb_multiple.php +5 -6
- readme.txt +5 -1
contact-bank.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Bank Lite Edition
|
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: Build Complex, Powerful Contact Forms in Just Seconds. No Programming Knowledge Required! Yeah, It's Really That Easy.
|
6 |
Author: Tech Banker
|
7 |
-
Version: 2.0.
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
4 |
Plugin URI: http://tech-banker.com
|
5 |
Description: Build Complex, Powerful Contact Forms in Just Seconds. No Programming Knowledge Required! Yeah, It's Really That Easy.
|
6 |
Author: Tech Banker
|
7 |
+
Version: 2.0.107
|
8 |
Author URI: http://tech-banker.com
|
9 |
*/
|
10 |
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
includes/cb_checkbox.php
CHANGED
@@ -194,8 +194,9 @@ else
|
|
194 |
<input type="hidden" id="ux_hd_textbox_dynamic_id" name="ux_hd_textbox_dynamic_id" value="<?php echo $dynamicId; ?>"/>
|
195 |
</div>
|
196 |
</div>
|
197 |
-
|
198 |
-
|
|
|
199 |
</div>
|
200 |
</div>
|
201 |
</div>
|
194 |
<input type="hidden" id="ux_hd_textbox_dynamic_id" name="ux_hd_textbox_dynamic_id" value="<?php echo $dynamicId; ?>"/>
|
195 |
</div>
|
196 |
</div>
|
197 |
+
<div class="layout-control-group">
|
198 |
+
<input type="submit" class="btn btn-info layout-span3" value="<?php _e( "Save Settings", contact_bank ); ?>" />
|
199 |
+
</div>
|
200 |
</div>
|
201 |
</div>
|
202 |
</div>
|
includes/cb_dropdown.php
CHANGED
@@ -192,12 +192,13 @@ else
|
|
192 |
</div>
|
193 |
</div>
|
194 |
<input type="hidden" id="ux_hd_textbox_dynamic_id" name="ux_hd_textbox_dynamic_id" value="<?php echo $dynamicId; ?>"/>
|
|
|
|
|
|
|
|
|
195 |
</div>
|
196 |
-
|
197 |
-
|
198 |
-
<input type="submit" class="btn btn-info layout-span3" value="<?php _e( "Save Settings", contact_bank ); ?>" />
|
199 |
-
</div>
|
200 |
-
</div>
|
201 |
</div>
|
202 |
</form>
|
203 |
<a class="closeButtonLightbox" onclick="CloseLightbox();"></a>
|
192 |
</div>
|
193 |
</div>
|
194 |
<input type="hidden" id="ux_hd_textbox_dynamic_id" name="ux_hd_textbox_dynamic_id" value="<?php echo $dynamicId; ?>"/>
|
195 |
+
</div>
|
196 |
+
</div>
|
197 |
+
<div class="layout-control-group">
|
198 |
+
<input type="submit" class="btn btn-info layout-span3" value="<?php _e( "Save Settings", contact_bank ); ?>" />
|
199 |
</div>
|
200 |
+
</div>
|
201 |
+
</div>
|
|
|
|
|
|
|
202 |
</div>
|
203 |
</form>
|
204 |
<a class="closeButtonLightbox" onclick="CloseLightbox();"></a>
|
includes/cb_multiple.php
CHANGED
@@ -178,9 +178,7 @@ else
|
|
178 |
<div class="layout-control-group">
|
179 |
<label class="layout-control-label"><?php _e( "Admin Label", contact_bank ); ?> :</label>
|
180 |
<div class="layout-controls">
|
181 |
-
<input type="text" class="layout-span12" id="ux_admin_label_<?php echo $dynamicId; ?>"
|
182 |
-
name="ux_admin_label_<?php echo $dynamicId; ?>" placeholder="<?php _e( "Enter Admin Label", contact_bank ); ?>"
|
183 |
-
value="<?php echo isset($form_settings[$dynamicId]["cb_admin_label"]) ? $form_settings[$dynamicId]["cb_admin_label"] : _e( "Untitled", contact_bank ); ?>" "/>
|
184 |
</div>
|
185 |
</div>
|
186 |
<div class="layout-control-group">
|
@@ -215,10 +213,11 @@ else
|
|
215 |
</div>
|
216 |
</div>
|
217 |
<input type="hidden" id="ux_hd_textbox_dynamic_id" name="ux_hd_textbox_dynamic_id" value="<?php echo $dynamicId; ?>"/>
|
|
|
|
|
|
|
|
|
218 |
</div>
|
219 |
-
</div>
|
220 |
-
<div class="layout-control-group">
|
221 |
-
<input type="submit" class="btn btn-info layout-span3" value="<?php _e( "Save Settings", contact_bank ); ?>" />
|
222 |
</div>
|
223 |
</div>
|
224 |
</div>
|
178 |
<div class="layout-control-group">
|
179 |
<label class="layout-control-label"><?php _e( "Admin Label", contact_bank ); ?> :</label>
|
180 |
<div class="layout-controls">
|
181 |
+
<input type="text" class="layout-span12" id="ux_admin_label_<?php echo $dynamicId; ?>" name="ux_admin_label_<?php echo $dynamicId; ?>" placeholder="<?php _e( "Enter Admin Label", contact_bank ); ?>" value="<?php echo isset($form_settings[$dynamicId]["cb_admin_label"]) ? $form_settings[$dynamicId]["cb_admin_label"] : _e( "Untitled", contact_bank ); ?>"/>
|
|
|
|
|
182 |
</div>
|
183 |
</div>
|
184 |
<div class="layout-control-group">
|
213 |
</div>
|
214 |
</div>
|
215 |
<input type="hidden" id="ux_hd_textbox_dynamic_id" name="ux_hd_textbox_dynamic_id" value="<?php echo $dynamicId; ?>"/>
|
216 |
+
</div>
|
217 |
+
</div>
|
218 |
+
<div class="layout-control-group">
|
219 |
+
<input type="submit" class="btn btn-info layout-span3" value="<?php _e( "Save Settings", contact_bank ); ?>" />
|
220 |
</div>
|
|
|
|
|
|
|
221 |
</div>
|
222 |
</div>
|
223 |
</div>
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: contact-banker, Gallery-Bank
|
|
3 |
Tags: admin, advanced form, Attachment, best contact form plugin, buddypress, category, cnotact, conact, contact, contact button, contact form, contact form builder, Contact Form Builder with recaptcha, contact form manager, contact form plugin, contact form with google map, contact forms, contact forms plugin, contact manager, contact me, contact us, contact us form, contacts, contacts form plugin, contatc, copy, custom form, email, email form, feedback, feedback form, feedback forms, form, forms, forms plugin, insert the shortcode, multiple contact forms, post feedback, request, send, send copy, send messages, shortcode, text, web form, web-page feedback, wordpress contact form
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 4.1.1
|
6 |
-
Stable tag: 2.0.
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -549,6 +549,10 @@ In order to set Shortcode for a Form, you need to follow these steps :
|
|
549 |
|
550 |
== Changelog ==
|
551 |
|
|
|
|
|
|
|
|
|
552 |
= 2.0.106 =
|
553 |
|
554 |
* Minor Bugs Fixed
|
3 |
Tags: admin, advanced form, Attachment, best contact form plugin, buddypress, category, cnotact, conact, contact, contact button, contact form, contact form builder, Contact Form Builder with recaptcha, contact form manager, contact form plugin, contact form with google map, contact forms, contact forms plugin, contact manager, contact me, contact us, contact us form, contacts, contacts form plugin, contatc, copy, custom form, email, email form, feedback, feedback form, feedback forms, form, forms, forms plugin, insert the shortcode, multiple contact forms, post feedback, request, send, send copy, send messages, shortcode, text, web form, web-page feedback, wordpress contact form
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 4.1.1
|
6 |
+
Stable tag: 2.0.107
|
7 |
License: GPLv3 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
549 |
|
550 |
== Changelog ==
|
551 |
|
552 |
+
= 2.0.107 =
|
553 |
+
|
554 |
+
* Minor Bugs Fixed
|
555 |
+
|
556 |
= 2.0.106 =
|
557 |
|
558 |
* Minor Bugs Fixed
|