Cookies help us provide better user experience. By using our website, you agree to the use of cookies.

Panda Resort - 7.8.0 (Jul 8, 2020)

Replace the following files and execute the queries in your SQL manager to perform the updates.

NEW FEATURES/IMPROVEMENTS

Child age shown in the booking (admin and confirmation emails)

/common/db.sql
>> new entries in table pm_text (! replace the lang id with your own values)

INSERT INTO pm_text (id, lang, name, value) VALUES
(185, 1, 'YO', 'y.o.'),
(185, 2, 'YO', 'ans'),
(185, 3, 'YO', 'y.o.');

/templates/default/models/booking.php
/templates/default/models/summary.php
/templates/default/models/payment.php
/includes/payments/braintree/checkout.php
/includes/payments/2checkout_notify.php
/includes/payments/paypal_notify.php
/includes/payments/razorpay_notify.php
    
Popup opening

/admin/modules/popup/
/common/db.sql
>> new table pm_popup

-- ============================================================
-- ============== CREATION OF THE TABLE pm_popup ==============
-- ============================================================

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 in new window

/common/define.php
/templates/default/common/header.php
/templates/default/models/home.php

New version of PHPMailer

/common/phpmailer/*

FIXED ISSUES

Missing translation Child

/templates/default/models/booking.php

Datepicker issue on closing dates

/admin/includes/inc_header_form.php

Error in booking summary

/templates/default/common/functions.php