Pandao CMS pro - 4.3.2 (Apr 13, 2020)
Replace the following files and execute the queries in your SQL manager to perform the updates.
NEW FEATURES/IMPROVEMENTS
Popup opening on page load
/admin/modules/popup/
/common/db.sql
CREATE TABLE pm_popup(
id int NOT NULL AUTO_INCREMENT,
lang int NOT NULL,
title varchar(250),
content text,
allpages text,
pages text,
background varchar(20),
checked int DEFAULT 0,
publish_date int,
unpublish_date int,
PRIMARY KEY(id,lang)
) ENGINE=INNODB DEFAULT CHARSET=utf8;
ALTER TABLE pm_popup ADD CONSTRAINT popup_lang_fkey FOREIGN KEY (lang) REFERENCES pm_lang(id) ON DELETE CASCADE ON UPDATE NO ACTION;
/js/custom.js
/templates/default/common/footer.php
External URL opened in new window
/common/define.php
/templates/default/common/header.php
/templates/default/models/home.php
New version of PHPMailer
/common/phpmailer/*
FIXED ISSUES
HTTPS issue in comments section
/templates/default/common/comments.php
Error message displayed in contact form
/common/lib.php (sendMail)
