diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2017-05-20 17:02:17 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2017-05-20 17:02:17 -0400 |
commit | 7110857caa2bec4dc45c2f2eeba3e537e82fae79 (patch) | |
tree | 840bdbd374eb3b4d88e38c7110c897608f770737 /plugins/wordpress-mobile-pack/wordpress-mobile-pack.php | |
parent | Update Aksimet v3.3.1, Jetpack v 4.9, Public Post Preview v 2.6.0 (diff) | |
download | blogs-gentoo-7110857caa2bec4dc45c2f2eeba3e537e82fae79.tar.gz blogs-gentoo-7110857caa2bec4dc45c2f2eeba3e537e82fae79.tar.bz2 blogs-gentoo-7110857caa2bec4dc45c2f2eeba3e537e82fae79.zip |
Update wordpress-mobile-pack 3.0
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'plugins/wordpress-mobile-pack/wordpress-mobile-pack.php')
-rwxr-xr-x | plugins/wordpress-mobile-pack/wordpress-mobile-pack.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/wordpress-mobile-pack/wordpress-mobile-pack.php b/plugins/wordpress-mobile-pack/wordpress-mobile-pack.php index e4babe17..7cb92297 100755 --- a/plugins/wordpress-mobile-pack/wordpress-mobile-pack.php +++ b/plugins/wordpress-mobile-pack/wordpress-mobile-pack.php @@ -2,10 +2,10 @@ /** * Plugin Name: WordPress Mobile Pack * Plugin URI: http://wordpress.org/plugins/wordpress-mobile-pack/ - * Description: WordPress Mobile Pack 2.0+ has been completely rebuilt from the ground up and repurposed to empower bloggers, publishers and other content creators to go beyond responsiveness and 'appify' the content of their blog. + * Description: WordPress Mobile Pack 3.0+ is a mobile plugin that helps you transform your WordPress-based content (posts/articles, categories, pages) into a progressive web application. It comes with multiple mobile app themes and extensions that you can purchase individually or as a bundle. * Author: WPMobilePack.com * Author URI: https://wpmobilepack.com/ - * Version: 2.2.10 + * Version: 3.0 * Copyright (c) 2009 - 2015 James Pearce, mTLD Top Level Domain Limited, ribot, Forum Nokia, Appticles.com * License: The WordPress Mobile Pack is Licensed under the Apache License, Version 2.0 * Text Domain: wordpress-mobile-pack @@ -47,6 +47,7 @@ if (class_exists( 'WMobilePack' ) && class_exists( 'WMobilePack' )) { $wmobile_pack_ajax = new WMobilePack_Admin_Ajax(); + add_action('wp_ajax_wmp_theme_switch', array( &$wmobile_pack_ajax, 'theme_switch' ) ); add_action('wp_ajax_wmp_theme_settings', array(&$wmobile_pack_ajax, 'theme_settings')); add_action('wp_ajax_wmp_theme_editimages', array(&$wmobile_pack_ajax, 'theme_editimages')); |