Version Description
- Minor bug fix
Download this release
Release Info
Developer | jasongreen |
Plugin | Contact Form Submissions |
Version | 1.5.5 |
Comparing to | |
See all releases |
Code changes from version 1.5.4 to 1.5.5
- Admin.php +2 -1
- contact-form-submissions.php +1 -1
- readme.txt +4 -1
Admin.php
CHANGED
@@ -28,7 +28,8 @@ class WPCF7SAdmin
|
|
28 |
*/
|
29 |
public function custom_status($translations = '', $text = '', $domain = '')
|
30 |
{
|
31 |
-
|
|
|
32 |
$translations = __('Submitted', 'contact-form-submissions');
|
33 |
}
|
34 |
return $translations;
|
28 |
*/
|
29 |
public function custom_status($translations = '', $text = '', $domain = '')
|
30 |
{
|
31 |
+
global $pagenow, $post_type;
|
32 |
+
if ('wpcf7s' === $post_type && is_admin() && 'edit.php' == $pagenow && 'Published' === $text) {
|
33 |
$translations = __('Submitted', 'contact-form-submissions');
|
34 |
}
|
35 |
return $translations;
|
contact-form-submissions.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Contact Form Submissions
|
4 |
Description: Never miss an enquiry again! Save all Contact Form 7 submissions in your database.
|
5 |
-
Version: 1.5.
|
6 |
Author: Jason Green
|
7 |
License: GPLv3
|
8 |
Domain Path: /languages
|
2 |
/*
|
3 |
Plugin Name: Contact Form Submissions
|
4 |
Description: Never miss an enquiry again! Save all Contact Form 7 submissions in your database.
|
5 |
+
Version: 1.5.5
|
6 |
Author: Jason Green
|
7 |
License: GPLv3
|
8 |
Domain Path: /languages
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: contact form 7, save contact form, submissions, contact form db, cf7, wpcf
|
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SNHXWSXSPYATE
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.7.4
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv3
|
9 |
|
10 |
Never miss an enquiry again! Save & Export your Contact Form 7 submissions.
|
@@ -40,6 +40,9 @@ None yet
|
|
40 |
|
41 |
== Changelog ==
|
42 |
|
|
|
|
|
|
|
43 |
= 1.5.4 =
|
44 |
* Minor bug fixes.
|
45 |
* Credit to @fabriziopera for his contribution.
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SNHXWSXSPYATE
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.7.4
|
7 |
+
Stable tag: 1.5.5
|
8 |
License: GPLv3
|
9 |
|
10 |
Never miss an enquiry again! Save & Export your Contact Form 7 submissions.
|
40 |
|
41 |
== Changelog ==
|
42 |
|
43 |
+
= 1.5.5 =
|
44 |
+
* Minor bug fix
|
45 |
+
|
46 |
= 1.5.4 =
|
47 |
* Minor bug fixes.
|
48 |
* Credit to @fabriziopera for his contribution.
|