Changeset 1809225
- Timestamp:
- 01/25/2018 10:52:03 AM (8 years ago)
- Location:
- livehelpnow-helpdesk/trunk/src/class
- Files:
-
- 4 edited
-
API/Authentication.php (modified) (1 diff)
-
Plugin.php (modified) (1 diff)
-
Settings.php (modified) (2 diffs)
-
SettingsPage.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
livehelpnow-helpdesk/trunk/src/class/API/Authentication.php
r1806916 r1809225 151 151 public function display_authentication_notice() { 152 152 153 if ( ! empty( get_option( 'lhn_authentication_info' )) ) {153 if ( ! get_option( 'lhn_authentication_info' ) ) { 154 154 return; 155 155 } -
livehelpnow-helpdesk/trunk/src/class/Plugin.php
r1806916 r1809225 154 154 } 155 155 156 die(); 157 156 158 } 157 159 } -
livehelpnow-helpdesk/trunk/src/class/Settings.php
r1806916 r1809225 22 22 public function should_display_chat() { 23 23 24 if ( empty( get_option( 'lhn_authentication_info')) ) {24 if ( ! get_option( 'lhn_authentication_info' ) ) { 25 25 return; 26 26 } … … 71 71 public function chat_display_metabox() { 72 72 73 if ( get_option( 'lhn_display_chat' ) ) {73 if ( ! get_option( 'lhn_display_chat' ) ) { 74 74 return; 75 75 } -
livehelpnow-helpdesk/trunk/src/class/SettingsPage.php
r1806916 r1809225 70 70 $this->page_header(); 71 71 72 if ( empty( get_option( 'lhn_authentication_info' )) ) {72 if ( ! get_option( 'lhn_authentication_info' ) ) { 73 73 require_once LHN_CHAT_PLUGIN_DIR_PATH . 'src/templates/admin/authentication-info.php'; 74 74 return;
Note: See TracChangeset
for help on using the changeset viewer.