Revision 2066
Added by Dietmar almost 11 years ago
branches/2.8.x/CHANGELOG | ||
---|---|---|
11 | 11 |
! = Update/Change |
12 | 12 |
=============================================================================== |
13 | 13 |
|
14 |
|
|
14 |
02 Jan-2014 Build 2066 Dietmar Woellbrink (Luisehahne) |
|
15 |
! /modules/output_filter/OutputFilterApi.php:: Typofix |
|
15 | 16 |
02 Jan-2014 Build 2065 Dietmar Woellbrink (Luisehahne) |
16 | 17 |
# /admin/users bugfixes user deactivating and deleting |
17 | 18 |
01 Jan-2014 Build 2064 Manuela v.d.Decken(DarkViper) |
branches/2.8.x/wb/admin/interface/version.php | ||
---|---|---|
51 | 51 |
|
52 | 52 |
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled) |
53 | 53 |
if(!defined('VERSION')) define('VERSION', '2.8.4'); |
54 |
if(!defined('REVISION')) define('REVISION', '2065');
|
|
54 |
if(!defined('REVISION')) define('REVISION', '2066');
|
|
55 | 55 |
if(!defined('SP')) define('SP', ''); |
branches/2.8.x/wb/modules/output_filter/OutputFilterApi.php | ||
---|---|---|
26 | 26 |
{ |
27 | 27 |
$oReg = WbAdaptor::getInstance(); |
28 | 28 |
$sFilterDir = __DIR__.'/filters/filter'; |
29 |
if (!preg_match('/^[a-z][a-z0-9\-]*$/si', $sContent)) {
|
|
29 |
if (!preg_match('/^[a-z][a-z0-9\-]*$/si', $sFilterName)) {
|
|
30 | 30 |
return $sContent; |
31 | 31 |
} |
32 | 32 |
if (is_readable($sFilterDir.$sFilterName.$oReg->PageExtension)) { |
Also available in: Unified diff
! /modules/output_filter/OutputFilterApi.php:: Typofix