CRM-14105 - WordPress: mail_report Scheduled Job "access denied" unless report permis...
authoratif-shaikh <shaikh388@gmail.com>
Fri, 20 Mar 2015 05:44:11 +0000 (11:14 +0530)
committeratif-shaikh <shaikh388@gmail.com>
Fri, 20 Mar 2015 05:44:11 +0000 (11:14 +0530)
https://issues.civicrm.org/jira/browse/CRM-14105

templates/CRM/common/drupal.tpl
templates/CRM/common/drupal6.tpl
templates/CRM/common/joomla.tpl
templates/CRM/common/print.tpl
templates/CRM/common/printBody.tpl
templates/CRM/common/wordpress.tpl

index a754729679d9a84a4b12809fba22fd5947a1af46..d77d5abcdd37d21176657682313bed50f508fe2e 100644 (file)
@@ -62,7 +62,7 @@
   {include file="CRM/common/status.tpl"}
   {crmRegion name='page-body'}
     <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
-    {if isset($isForm) and $isForm}
+    {if isset($isForm) and $isForm and isset($formTpl)}
       {include file="CRM/Form/$formTpl.tpl"}
     {else}
       {include file=$tplFile}
index 07d5da792818aec5788a620fb14a68bd3e05c56e..2008ddd6f0c4a0c454ef282b017075dd379a5d49 100644 (file)
@@ -64,7 +64,7 @@
   {include file="CRM/common/status.tpl"}
   {crmRegion name='page-body'}
     <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
-    {if isset($isForm) and $isForm}
+    {if isset($isForm) and $isForm and isset($formTpl)}
       {include file="CRM/Form/$formTpl.tpl"}
     {else}
       {include file=$tplFile}
index 171dee955f87b4ec095c7ff6b98ab9f21fb94c1a..936cc20dbb6f52c3f19dd55e0a2a364dd9305d25 100644 (file)
@@ -85,7 +85,7 @@
       {include file="CRM/common/status.tpl"}
       {crmRegion name='page-body'}
         <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
-        {if isset($isForm) and $isForm}
+        {if isset($isForm) and $isForm and isset($formTpl)}
           {include file="CRM/Form/$formTpl.tpl"}
         {else}
           {include file=$tplFile}
index 255e6a57bf7d5f76c2825424f78b6f0a1c88cee1..32118854c3fb416e51ea07b9eac8b588dc213633 100644 (file)
@@ -45,7 +45,7 @@
 
 {crmRegion name='page-body' allowCmsOverride=0}
 <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
-  {if $isForm}
+  {if $isForm and isset($formTpl)}
     {include file="CRM/Form/$formTpl.tpl"}
   {else}
     {include file=$tplFile}
index 7c875453acd37fcf8bb2b3436e159366bd6cbfbb..b42876fda9e49dcc9b3da11ee4c2df3eed95a685 100644 (file)
@@ -26,7 +26,7 @@
 {* printBody.tpl: wrapper for Print views without HTML surrounds. *}
 
 <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
-{if $isForm}
+{if $isForm and isset($formTpl)}
     {include file="CRM/Form/$formTpl.tpl"}
 {else}
     {include file=$tplFile}
index 77da6eaa2b6ceff326d801b1f3403ac1dbc7f390..641ea9efdc181febda2c169ece1cb7a6e3877e77 100644 (file)
@@ -81,7 +81,7 @@
   {include file="CRM/common/status.tpl"}
   {crmRegion name='page-body'}
     <!-- .tpl file invoked: {$tplFile}. Call via form.tpl if we have a form in the page. -->
-    {if isset($isForm) and $isForm}
+    {if isset($isForm) and $isForm and isset($formTpl)}
       {include file="CRM/Form/$formTpl.tpl"}
     {else}
       {include file=$tplFile}