Version Description
Download this release
Release Info
Developer | wptouch |
Plugin | WPtouch |
Version | 4.3.25 |
Comparing to | |
See all releases |
Code changes from version 4.3.24 to 4.3.25
- core/theme.php +3 -3
- lang/wptouch.pot +4 -4
- readme.txt +5 -1
- wptouch.php +2 -2
core/theme.php
CHANGED
@@ -42,7 +42,7 @@ function wptouch_the_post() {
|
|
42 |
}
|
43 |
|
44 |
function wptouch_the_content() {
|
45 |
-
echo
|
46 |
}
|
47 |
|
48 |
function wptouch_get_content() {
|
@@ -50,7 +50,7 @@ function wptouch_get_content() {
|
|
50 |
}
|
51 |
|
52 |
function wptouch_the_excerpt() {
|
53 |
-
echo
|
54 |
}
|
55 |
|
56 |
function wptouch_get_excerpt() {
|
@@ -402,4 +402,4 @@ function wptouch_ordered_tag_list( $num ) {
|
|
402 |
}
|
403 |
}
|
404 |
echo '</ul>';
|
405 |
-
}
|
42 |
}
|
43 |
|
44 |
function wptouch_the_content() {
|
45 |
+
echo apply_filters( 'the_content', wptouch_get_content() );
|
46 |
}
|
47 |
|
48 |
function wptouch_get_content() {
|
50 |
}
|
51 |
|
52 |
function wptouch_the_excerpt() {
|
53 |
+
echo wptouch_get_excerpt();
|
54 |
}
|
55 |
|
56 |
function wptouch_get_excerpt() {
|
402 |
}
|
403 |
}
|
404 |
echo '</ul>';
|
405 |
+
}
|
lang/wptouch.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the WPtouch Mobile Plugin package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPtouch Mobile Plugin 4.3.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n"
|
7 |
-
"POT-Creation-Date: 2018-02-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -2523,9 +2523,9 @@ msgstr ""
|
|
2523 |
msgid "WPtouch Mobile Plugin"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#. #-#-#-#-# wptouch.pot (WPtouch Mobile Plugin 4.3.
|
2527 |
#. Plugin URI of the plugin/theme
|
2528 |
-
#. #-#-#-#-# wptouch.pot (WPtouch Mobile Plugin 4.3.
|
2529 |
#. Author URI of the plugin/theme
|
2530 |
msgid "http://www.wptouch.com/"
|
2531 |
msgstr ""
|
2 |
# This file is distributed under the same license as the WPtouch Mobile Plugin package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPtouch Mobile Plugin 4.3.25\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wptouch\n"
|
7 |
+
"POT-Creation-Date: 2018-02-02 15:30:47+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2523 |
msgid "WPtouch Mobile Plugin"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#. #-#-#-#-# wptouch.pot (WPtouch Mobile Plugin 4.3.25) #-#-#-#-#
|
2527 |
#. Plugin URI of the plugin/theme
|
2528 |
+
#. #-#-#-#-# wptouch.pot (WPtouch Mobile Plugin 4.3.25) #-#-#-#-#
|
2529 |
#. Author URI of the plugin/theme
|
2530 |
msgid "http://www.wptouch.com/"
|
2531 |
msgstr ""
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: wptouch, sureswiftcapital, duanestorey, dalemugford, adamdipardo, oxymoron
|
3 |
Tags: wptouch, iphone, ipod, bravenewcode, mobile, mobile-friendly, android, blackberry, smartphone, responsive, design, mobile plugin, ios, mobile theme
|
4 |
Requires at least: 4.2
|
5 |
-
Stable tag: 4.3.
|
6 |
Tested up to: 4.9
|
7 |
License: GPLv2
|
8 |
|
@@ -33,6 +33,10 @@ For more information visit [WPtouch.com](http://www.wptouch.com/?utm_campaign=wp
|
|
33 |
|
34 |
== Changelog ==
|
35 |
|
|
|
|
|
|
|
|
|
36 |
= Version 4.3.24 (Feb 1st, 2018) =
|
37 |
|
38 |
* Fixed: Added additional sanitization and escaping to data pulled saved to and pulled from the database.
|
2 |
Contributors: wptouch, sureswiftcapital, duanestorey, dalemugford, adamdipardo, oxymoron
|
3 |
Tags: wptouch, iphone, ipod, bravenewcode, mobile, mobile-friendly, android, blackberry, smartphone, responsive, design, mobile plugin, ios, mobile theme
|
4 |
Requires at least: 4.2
|
5 |
+
Stable tag: 4.3.25
|
6 |
Tested up to: 4.9
|
7 |
License: GPLv2
|
8 |
|
33 |
|
34 |
== Changelog ==
|
35 |
|
36 |
+
= Version 4.3.25 (Feb 2nd, 2018) =
|
37 |
+
|
38 |
+
* Fixed: Double escaping on post content which caused certain shortcodes not to work properly.
|
39 |
+
|
40 |
= Version 4.3.24 (Feb 1st, 2018) =
|
41 |
|
42 |
* Fixed: Added additional sanitization and escaping to data pulled saved to and pulled from the database.
|
wptouch.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: WPtouch Mobile Plugin
|
4 |
Plugin URI: http://www.wptouch.com/
|
5 |
-
Version: 4.3.
|
6 |
Description: Make a beautiful mobile-friendly version of your website with just a few clicks.
|
7 |
Author: WPtouch
|
8 |
Author URI: http://www.wptouch.com/
|
@@ -14,7 +14,7 @@
|
|
14 |
|
15 |
function wptouch_create_four_object() {
|
16 |
if ( !defined( 'WPTOUCH_IS_PRO' ) ) {
|
17 |
-
define( 'WPTOUCH_VERSION', '4.3.
|
18 |
|
19 |
define( 'WPTOUCH_BASE_NAME', basename( __FILE__, '.php' ) . '.php' );
|
20 |
define( 'WPTOUCH_DIR', WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . basename( __FILE__, '.php' ) );
|
2 |
/*
|
3 |
Plugin Name: WPtouch Mobile Plugin
|
4 |
Plugin URI: http://www.wptouch.com/
|
5 |
+
Version: 4.3.25
|
6 |
Description: Make a beautiful mobile-friendly version of your website with just a few clicks.
|
7 |
Author: WPtouch
|
8 |
Author URI: http://www.wptouch.com/
|
14 |
|
15 |
function wptouch_create_four_object() {
|
16 |
if ( !defined( 'WPTOUCH_IS_PRO' ) ) {
|
17 |
+
define( 'WPTOUCH_VERSION', '4.3.25' );
|
18 |
|
19 |
define( 'WPTOUCH_BASE_NAME', basename( __FILE__, '.php' ) . '.php' );
|
20 |
define( 'WPTOUCH_DIR', WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . basename( __FILE__, '.php' ) );
|