Skip to content
This repository was archived by the owner on Mar 5, 2022. It is now read-only.

Commit 852c035

Browse files
author
Florian Krämer
committed
Fixing an issue for case-sensitive file systems in bootstrap.php
1 parent c16a3e0 commit 852c035

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Config/bootstrap.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
if (Configure::read('HtmlPurifier.standalone') != true) {
3-
require_once( CakePlugin::path('HtmlPurifier') . 'Vendor' . DS . 'HtmlPurifier' . DS . 'library' . DS . 'HTMLPurifier.auto.php' );
3+
require_once(CakePlugin::path('HtmlPurifier') . 'Vendor' . DS . 'HtmlPurifier' . DS . 'library' . DS . 'HTMLPurifier.auto.php');
44
} else {
5-
require_once( CakePlugin::path('HtmlPurifier') . 'Vendor' . DS . 'Htmlpurifier-4.4.0-standalone' . DS . 'HTMLPurifier.standalone.php' );
5+
require_once(CakePlugin::path('HtmlPurifier') . 'Vendor' . DS . 'htmlpurifier-4.4.0-standalone' . DS . 'HTMLPurifier.standalone.php');
66
}
77
App::uses('Purifier', 'HtmlPurifier.Lib');

0 commit comments

Comments
 (0)