Project

General

Profile

« Previous | Next » 

Revision 1995

Added by darkviper over 10 years ago

  1. output_filter > filters/filterWbLink solved Entity problem by splitting arguments

View differences:

branches/2.8.x/CHANGELOG
11 11
! = Update/Change
12 12
===============================================================================
13 13

  
14
07 Nov-2013 Build 1995 Manuela v.d.Decken(DarkViper)
15
# output_filter > filters/filterWbLink solved Entity problem by splitting arguments
14 16
06 Nov-2013 Build 1994 Manuela v.d.Decken(DarkViper)
15 17
+ /module/news/WbLink.php  added Interface class to module news
16 18
! ../fck_wbmodules.php & ../wbmodules.htt modified link generation for news module
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.3');
54
if(!defined('REVISION')) define('REVISION', '1994');
54
if(!defined('REVISION')) define('REVISION', '1995');
55 55
if(!defined('SP')) define('SP', '');
branches/2.8.x/wb/modules/output_filter/filters/filterWbLink.php
23 23
				if($aMatches[2][$iKey])
24 24
				{
25 25
					$aReplaceList[$sKeyString]['Args'] = array();
26
					$aArgs = explode('&', $aMatches[2][$iKey]);
26
					$aArgs = preg_split('/&|&/i', $aMatches[2][$iKey], -1, PREG_SPLIT_NO_EMPTY);
27 27
					foreach($aArgs as $sArgument)
28 28
					{
29 29
						$aTmp = explode('=', $sArgument);

Also available in: Unified diff