Posted: 04/10/2008 4:20:15 PM
Below you can find patches for v4.3.0:
1. Ajax error under Admin->Community->Users section when trying to use Mass Mailing functionality.
Fix is simple, open core/admin_templates/emails/mass_email.tpl and add at the very top:
<inp2:adm_SetPopupSize width="750" height="400"/>
2. Session expiration on Admin->Tools->Backup section.
To fix, open kernel/include/usersession.php
and replace all instances of:
find and replace:
$this->Set("LastAccessed", adodb_mktime());
with
$this->Set("LastAccessed", adodb_mktime() + $objConfig->Get("SessionTimeout"));
and
find and replace:
$this->Set("LastAccessed", adodb_date('U') );
with
$this->Set("LastAccessed", adodb_date('U') + $objConfig->Get("SessionTimeout"));
Feel free to post here or support with any questions.