Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 2026)
+++ branches/2.8.x/CHANGELOG	(revision 2027)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+08 Dec-2013 Build 2027 Manuela v.d.Decken(DarkViper)
+# some typofixes in Multilingual/tpl/lang.html.php and WbLinkAbstract
 08 Dec-2013 Build 2026 Manuela v.d.Decken(DarkViper)
 ! [wblink] outputfilter now can handle ancors too
 ! WbLink Interface is much more easier to use now.
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 2026)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 2027)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.3');
-if(!defined('REVISION')) define('REVISION', '2026');
+if(!defined('REVISION')) define('REVISION', '2027');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/framework/WbLinkAbstract.php
===================================================================
--- branches/2.8.x/wb/framework/WbLinkAbstract.php	(revision 2026)
+++ branches/2.8.x/wb/framework/WbLinkAbstract.php	(revision 2027)
@@ -74,7 +74,7 @@
 		     . 'FROM `'.$this->oDb->TablePrefix.'sections` `s` '
 			 . 'LEFT JOIN `'.$this->oDb->TablePrefix.$this::TABLE_NAME.'` `p` ON `s`.`section_id`= `p`.`'.$this::FIELDNAME_SECTION_ID.'` '
 			 . 'WHERE `s`.`module`=\''.$this->sAddon.'\' '
-		     . ($this->FIELDNAME_ACTIVE != '' ? 'AND `p`.`'.$this::FIELDNAME_ACTIVE.'`>0 ' : '')
+		     . ($this::FIELDNAME_ACTIVE != '' ? 'AND `p`.`'.$this::FIELDNAME_ACTIVE.'`>0 ' : '')
 			 . 'ORDER BY `s`.`page_id`, `s`.`section_id`'.($this::FIELDNAME_TIMESTAMP != '' ? ', `p`.`'.$this::FIELDNAME_TIMESTAMP.'` DESC' : '');
 		if (( $oRes = $this->oDb->doQuery($sql))) {
 		// preset group changer flags
@@ -96,7 +96,7 @@
 				}
 				// save current record
 				$aAddonItems[$iCurrentPage.'P'][$iSectionCounter][] = array(
-				    'wblink' => '[wblink'.$aItem['PageId'].'?addon='.$sAddon.'&item='.$aItem['ItemId'].']',
+				    'wblink' => '[wblink'.$aItem['PageId'].'?addon='.$this->sAddon.'&item='.$aItem['ItemId'].']',
 				    'title'  => preg_replace("/\r?\n/", "\\n", $this->oDb->escapeString($aItem['Title']))
 				);
 			}
Index: branches/2.8.x/wb/modules/MultiLingual/tpl/lang.html.twig
===================================================================
--- branches/2.8.x/wb/modules/MultiLingual/tpl/lang.html.twig	(revision 2026)
+++ branches/2.8.x/wb/modules/MultiLingual/tpl/lang.html.twig	(revision 2027)
@@ -36,8 +36,7 @@
 {% for aTarget in aTargetList %}
 	<a href="{{ aTarget.sTargetPageUrl }}" {% if aTarget.bCurrentLanguage %}class="current" {% endif %}title="{{ aTarget.sToolTip }}">
 		<span>
-			<img style="width:32px; height:24px" src="{{ aTarget.sIconUrl }}flags/
-				{{ aTarget.sImageType }}/{{ aTarget.sFilename }}.{{ aTarget.sImageType }}"
+			<img style="width:32px; height:24px" src="{{ aTarget.sIconUrl }}flags/{{ aTarget.sImageType }}/{{ aTarget.sFilename }}.{{ aTarget.sImageType }}"
 				title="{{ aTarget.sPageTitle }}" alt="{{ aTarget.sToolTip }}"
 			/>
 		</span>
