Changeset 1859590
- Timestamp:
- 04/17/2018 07:52:29 AM (8 years ago)
- Location:
- livehelpnow-helpdesk/trunk
- Files:
-
- 3 edited
-
plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/class/Plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
livehelpnow-helpdesk/trunk/plugin.php
r1845813 r1859590 2 2 /** 3 3 * Plugin Name: Livehelpnow Help Desk 4 * Version: 0.1. 74 * Version: 0.1.8 5 5 * Plugin URI: https://wordpress.org/plugins/livehelpnow-helpdesk/ 6 6 * Description: Include LiveHelpNow chat system on your WordPress website. -
livehelpnow-helpdesk/trunk/readme.txt
r1845813 r1859590 4 4 Requires at least: 4.5 5 5 Requires PHP: 5.4 6 Tested up to: 4.9. 17 Stable tag: 0.1. 76 Tested up to: 4.9.5 7 Stable tag: 0.1.8 8 8 License GPLv2 or later 9 9 License URI http://www.gnu.org/licenses/gpl-2.0.html … … 88 88 == Changelog == 89 89 90 = 0.1.8 = 91 * Added check for cURL installed and activated before plugin activation. 92 90 93 = 0.1.7 = 91 94 * Fixed problem WordPress bug, not allowing template tags in side metabox, causing interference with global object ID. -
livehelpnow-helpdesk/trunk/src/class/Plugin.php
r1819225 r1859590 102 102 <div class="notice notice-error is-dismissible"> 103 103 <p> 104 <?php printf( esc_html__( 'LiveHelpNow Help Desk plugin requires PHP %s or higher.' ,'lhnchat' ), self::REQUIRED_PHP ); ?>104 <?php printf( esc_html__( 'LiveHelpNow Help Desk plugin requires PHP %s or higher.', 'lhnchat' ), self::REQUIRED_PHP ); ?> 105 105 </p> 106 106 </div> … … 114 114 */ 115 115 public function on_plugin_activation() { 116 117 if ( ! function_exists('curl_version') ) { 118 printf( '<p>%s<p>', __('This plugin requires cURL extension to be installed and activated in order to work.', 'lhnchat' ) ); 119 @trigger_error( __( 'This plugin requires cURL extension to be installed and activated.', 'lhnchat' ), E_USER_ERROR ); 120 } 116 121 117 122 if ( ! wp_next_scheduled ( 'lhn_destroy_user_session_schedule' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.