Version Description
- WordPress 5.8 compatibility checked
Download this release
Release Info
Developer | Access Keys |
Plugin | Contact Form for WordPress – Ultimate Form Builder Lite |
Version | 1.5.0 |
Comparing to | |
See all releases |
Code changes from version 1.4.9 to 1.5.0
- readme.txt +5 -2
- ultimate-form-builder-lite.php +2 -2
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Access Keys
|
|
3 |
Tags: contact form, form builder, form, forms, contact forms, enquiry forms, form manager, email form, lead form, email, database store form, form entry, form entries, email forms
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 4.5
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -147,6 +147,9 @@ Once you install the plugin , you can check some general documentation about how
|
|
147 |
10. Backend Entry Detail
|
148 |
|
149 |
== Changelog ==
|
|
|
|
|
|
|
150 |
= 1.4.9 =
|
151 |
* WordPress 5.7 compatibility checked
|
152 |
|
3 |
Tags: contact form, form builder, form, forms, contact forms, enquiry forms, form manager, email form, lead form, email, database store form, form entry, form entries, email forms
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 4.5
|
6 |
+
Tested up to: 5.8
|
7 |
+
Stable tag: 1.5.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
147 |
10. Backend Entry Detail
|
148 |
|
149 |
== Changelog ==
|
150 |
+
= 1.5.0 =
|
151 |
+
* WordPress 5.8 compatibility checked
|
152 |
+
|
153 |
= 1.4.9 =
|
154 |
* WordPress 5.7 compatibility checked
|
155 |
|
ultimate-form-builder-lite.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ultimate Form Builder Lite
|
4 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/
|
5 |
Description: A plugin to build any type of forms
|
6 |
-
Version: 1.
|
7 |
Author: AccessPress Themes
|
8 |
Author URI: http://accesspressthemes.com
|
9 |
License: GPL2
|
@@ -16,7 +16,7 @@
|
|
16 |
* Necessary Constants for plugin
|
17 |
*/
|
18 |
global $wpdb;
|
19 |
-
defined( 'UFBL_VERSION' ) or define( 'UFBL_VERSION', '1.
|
20 |
defined( 'UFBL_SLUG' ) or define( 'UFBL_SLUG', 'ufbl' ); //plugin admin slug
|
21 |
defined( 'UFBL_TD' ) or define( 'UFBL_TD', 'ultimate-form-builder-lite' ); //plugin's text domain
|
22 |
defined( 'UFBL_IMG_DIR' ) or define( 'UFBL_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory
|
3 |
Plugin Name: Ultimate Form Builder Lite
|
4 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/ultimate-form-builder-lite/
|
5 |
Description: A plugin to build any type of forms
|
6 |
+
Version: 1.5.0
|
7 |
Author: AccessPress Themes
|
8 |
Author URI: http://accesspressthemes.com
|
9 |
License: GPL2
|
16 |
* Necessary Constants for plugin
|
17 |
*/
|
18 |
global $wpdb;
|
19 |
+
defined( 'UFBL_VERSION' ) or define( 'UFBL_VERSION', '1.5.0' ); //plugin version
|
20 |
defined( 'UFBL_SLUG' ) or define( 'UFBL_SLUG', 'ufbl' ); //plugin admin slug
|
21 |
defined( 'UFBL_TD' ) or define( 'UFBL_TD', 'ultimate-form-builder-lite' ); //plugin's text domain
|
22 |
defined( 'UFBL_IMG_DIR' ) or define( 'UFBL_IMG_DIR', plugin_dir_url( __FILE__ ) . 'images' ); //plugin image directory
|