mirror of
https://github.com/processwire/processwire.git
synced 2025-08-08 07:47:00 +02:00
Minor updates to site-blank profile, primarily to replace default rich-text editor with TinyMCE for new site-blank installs
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
* This file is licensed under the MIT license
|
||||
* https://processwire.com/about/license/mit/
|
||||
*
|
||||
* ProcessWire 3.x, Copyright 2022 by Ryan Cramer
|
||||
* ProcessWire 3.x, Copyright 2023 by Ryan Cramer
|
||||
* https://processwire.com
|
||||
*
|
||||
*/
|
||||
@@ -46,5 +46,4 @@ $config->appendTemplateFile = '_main.php';
|
||||
// Allow template files to be compiled for backwards compatibility?
|
||||
$config->templateCompile = false;
|
||||
|
||||
/*** INSTALLER CONFIG ********************************************************************/
|
||||
|
||||
/*** INSTALLER CONFIG ********************************************************************/
|
@@ -267,7 +267,7 @@ INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('148',
|
||||
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('149', 'InputfieldSelector', '2', '', NOW());
|
||||
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('150', 'ProcessPageLister', '0', '', NOW());
|
||||
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('151', 'JqueryMagnific', '1', '', NOW());
|
||||
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('155', 'InputfieldCKEditor', '0', '', NOW());
|
||||
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('155', 'InputfieldTinyMCE', '0', '', NOW());
|
||||
INSERT INTO `modules` (`id`, `class`, `flags`, `data`, `created`) VALUES('156', 'MarkupHTMLPurifier', '0', '', NOW());
|
||||
|
||||
DROP TABLE IF EXISTS `pages`;
|
||||
|
@@ -11,8 +11,8 @@
|
||||
/** @var Page $page */
|
||||
/** @var Pages $pages */
|
||||
/** @var Config $config */
|
||||
|
||||
$home = $pages->get('/'); // homepage
|
||||
|
||||
$home = $pages->get('/'); /** @var HomePage $home */
|
||||
|
||||
?><!DOCTYPE html>
|
||||
<html lang="en">
|
||||
@@ -52,4 +52,4 @@ $home = $pages->get('/'); // homepage
|
||||
<?php endif; ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
Reference in New Issue
Block a user