ILIAS  release_5-2 Revision v5.2.25-18-g3f80b82851
config.default.php
Go to the documentation of this file.
1 <?php
2 
3 if(!defined("PHORUM")) exit;
4 
5 // default HTML Purifier configuration settings
6 $config->set('HTML.Allowed',
7  // alphabetically sorted
8 'a[href|title]
9 abbr[title]
10 acronym[title]
11 b
12 blockquote[cite]
13 br
14 caption
15 cite
16 code
17 dd
18 del
19 dfn
20 div
21 dl
22 dt
23 em
24 i
25 img[src|alt|title|class]
26 ins
27 kbd
28 li
29 ol
30 p
31 pre
32 s
33 strike
34 strong
35 sub
36 sup
37 table
38 tbody
39 td
40 tfoot
41 th
42 thead
43 tr
44 tt
45 u
46 ul
47 var');
48 $config->set('AutoFormat.AutoParagraph', true);
49 $config->set('AutoFormat.Linkify', true);
50 $config->set('HTML.Doctype', 'XHTML 1.0 Transitional');
51 $config->set('Core.AggressivelyFixLt', true);
52 $config->set('Core.Encoding', $GLOBALS['PHORUM']['DATA']['CHARSET']); // we'll change this eventually
53 if (strtolower($GLOBALS['PHORUM']['DATA']['CHARSET']) !== 'utf-8') {
54  $config->set('Core.EscapeNonASCIICharacters', true);
55 }
56 
57 // vim: et sw=4 sts=4
$GLOBALS['loaded']
Global hash that tracks already loaded includes.
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
Definition: bootstrap.php:27