There is fix for
Bookable Items:
/administrator/components/com_booking/views/subject/tmpl/form_details.php
around row 147 there is:
<?php AImporter::tpl('files', $this->_layout, 'files'); ?>
change it to:
<?php include AImporter::tpl('files', $this->_layout, 'files', ADMIN_VIEWS, true); ?>
around row 289 there is:
<?php AImporter::tpl('images', $this->_layout, 'images'); ?>
change it to:
<?php include AImporter::tpl('images', $this->_layout, 'images', ADMIN_VIEWS, true); ?>
/administrator/components/com_booking/views/subject/tmpl/form_properties.php
around row 83 there is:
AImporter::tpl('template', $this->_layout, 'calendars');
change it to:
include AImporter::tpl('template', $this->_layout, 'calendars', ADMIN_VIEWS, true);