فهرست منبع

Check for Empty Actions before Reply Check

Andy 3 سال پیش
والد
کامیت
fc474fbca6
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      functions/page_header.php

+ 2 - 2
functions/page_header.php

@@ -272,7 +272,7 @@ function displayPageHeader($color, $mailbox='', $sHeaderJs='', $sOnload = '') {
         $data_dir, $username;
 
     if (empty($sOnload)) {
-        if (strpos($action, 'reply') !== FALSE && $reply_focus) {
+        if (!empty($action) && strpos($action, 'reply') !== FALSE && $reply_focus) {
             if ($reply_focus == 'select')
                 $sOnload = 'checkForm(\'select\');';
             else if ($reply_focus == 'focus')
@@ -381,7 +381,7 @@ function compose_Header($color, $mailbox, $sHeaderJs='', $sOnload = '') {
     global $reply_focus, $action, $oTemplate;
 
     if (empty($sOnload)) {
-        if (strpos($action, 'reply') !== FALSE && $reply_focus) {
+        if (!empty($action) && strpos($action, 'reply') !== FALSE && $reply_focus) {
             if ($reply_focus == 'select')
                 $sOnload = 'checkForm(\'select\');';
             else if ($reply_focus == 'focus')