Index: /controller/wpsg_ShopController.class.php
===================================================================
--- /controller/wpsg_ShopController.class.php	(revision 5943)
+++ /controller/wpsg_ShopController.class.php	(revision 5945)
@@ -669,4 +669,5 @@
 
 				wp_enqueue_script('jquery-ui-core');
+				wp_enqueue_script('jquery-ui-dialog');
 				wp_enqueue_script('jquery-ui-sortable');
 				wp_enqueue_script('jquery-ui-datepicker'); //, $this->url(WPSG_URL_CONTENT.'plugins/'.WPSG_FOLDERNAME.'/lib/ui/jquery.ui.datepicker.js'), array('jquery', 'jquery-ui-core'));
@@ -682,4 +683,5 @@
 				}
 				
+				wp_enqueue_style('wp-jquery-ui-dialog');
 				wp_enqueue_style('jquery-ui-datepicker');
 				wp_enqueue_style('wpsg-adminstyle', $GLOBALS['wpsg_sc']->getRessourceURL('css/admin.css'), array('wpsg-bscss', 'wpsg-bs-theme-css'));
Index: /mods/mod_statistics/wpsg_turnover.class.php
===================================================================
--- /mods/mod_statistics/wpsg_turnover.class.php	(revision 5943)
+++ /mods/mod_statistics/wpsg_turnover.class.php	(revision 5945)
@@ -373,4 +373,5 @@
 		
 		$adjustment = 1;
+		$day = 0;
 		
 		if ($point == '0')
@@ -403,5 +404,5 @@
 													  		`".WPSG_TBL_ORDER."`
 													 	WHERE 
-													  		".$this->getSqlWhere('validOrder')." AND 
+													  		 ".$this->getSqlWhere('validOrder')." AND
 													  		`cdate`	>= '".date('Y-m-d 00:00:00', $firstDayofWeek)."' AND 
 													  		`cdate` <= '".date('Y-m-d 23:59:59', $lastDayofWeek)."'
@@ -411,12 +412,12 @@
 													 		year DESC
 													 	", "day");
-		
+
 		$day += $firstDayofWeek;
 		
 		for ($i = 0; $i < 7; $i++)
 		{	
-			if (!isset($arData[0]['records'][date(j, $day)]))
-			{
-				$arData[0]['records'][date(j, $day)] = array('orders'	=> '0',
+			if (!isset($arData[0]['records'][date('j', $day)]))
+			{
+				$arData[0]['records'][date('j', $day)] = array('orders'	=> '0',
 															 'total'	=> '0',
 															 'avg_total'=> '0',
@@ -427,5 +428,5 @@
 			}	
 
-			$arData[0]['records'][date(j, $day)]['label'] = date('d.m.Y', $day);	
+			$arData[0]['records'][date('j', $day)]['label'] = date('d.m.Y', $day);	
 			
 			$day += 86400;
Index: /mods/wpsg_mod_productvariants.class.php
===================================================================
--- /mods/wpsg_mod_productvariants.class.php	(revision 5943)
+++ /mods/wpsg_mod_productvariants.class.php	(revision 5945)
@@ -65,10 +65,8 @@
 				name varchar(255) NOT NULL,
 				shortname varchar(255) NOT NULL,
-					
 				anr varchar(255) NOT NULL,
 				price double(10,2) NOT NULL,
 				stock int(11) NOT NULL,
 				images text NOT NULL,
-				
 				deleted int(1) NOT NULL,
 				pos int(11) NOT NULL,
@@ -82,7 +80,5 @@
 				variant_id int(11) NOT NULL,
 				product_id int(11) NOT NULL,
-			
 				pos int(11) NOT NULL,
-			
 				PRIMARY KEY  (id),
 				KEY product_id (product_id),
@@ -91,10 +87,9 @@
 				
 			dbDelta($sql);
-							
+			
 			$sql = "CREATE TABLE ".WPSG_TBL_PRODUCTS_VARIATION." (
 				id int(11) NOT NULL AUTO_INCREMENT,
 				variation_id int(11) NOT NULL,
 				product_id int(11) NOT NULL,
-				
 				active int(1) NOT NULL,
 				anr varchar(255) NOT NULL,
@@ -102,5 +97,4 @@
 				stock int(11) NOT NULL,
 				images text NOT NULL, 
-									
 				PRIMARY KEY  (id),
 				KEY product_id (product_id),
Index: /mods/wpsg_mod_statistics.class.php
===================================================================
--- /mods/wpsg_mod_statistics.class.php	(revision 5943)
+++ /mods/wpsg_mod_statistics.class.php	(revision 5945)
@@ -34,9 +34,9 @@
 			
 			parent::__construct();
-									
+			
 			$this->name = __('Statistik', 'wpsg');
 			$this->group = __('Sonstiges', 'wpsg');
 			$this->desc = __('Darstellung und Auswertung von Statistiken, Piwik Integration, Eckdaten als Dashboard-Widget', 'wpsg');
-						
+			
 		}
 
@@ -66,5 +66,5 @@
 			
 			$this->shop->checkDefault('wpsg_mod_statistics_status', implode(',', array(100, 110)));
-	
+
 			/**
 			 * Produkttabelle fÃŒr Kundenkarte erweitern
@@ -113,5 +113,8 @@
 					wp_enqueue_style('wpsg_mod_statistics_css_jqplot', WPSG_URL_CONTENT.'plugins/'.WPSG_FOLDERNAME.'/lib/jqplot/jquery.jqplot.css');
 					//$this->dispatch();
-						
+					
+					//$gurl = WPSG_URL_CONTENT.'plugins/'.WPSG_FOLDERNAME.'/lib/jqplot/jquery.jqplot.js';
+					//wp_register_script('wpsg_mod_statistics_js_jqplot', $gurl, $arr, null);
+					//wp_enqueue_script('wpsg_mod_statistics_js_jqplot');
 				}
 
@@ -119,5 +122,5 @@
 			
 		} // public wpsg_enqueue_scripts()
-		 		
+		
 		/**
 		 * Rechte setzen
@@ -144,11 +147,11 @@
 		
 		public function checkout2_inner_prebutton(&$checkout_view) 
-		{ 
+		{
 			
 			if ($this->shop->get_option('wpsg_mod_statistics_piwik_checkout2') == '1')
 			{
-					
+				
 				$this->trackTarget($this->shop->get_option('wpsg_mod_statistics_piwik_checkout2_target'));
-					
+				
 			}
 			
@@ -156,5 +159,5 @@
 		
 		public function overview_inner_prebutton(&$basket_view) 
-		{ 
+		{
 			
 			if ($this->shop->get_option('wpsg_mod_statistics_piwik_overview') == '1')
@@ -172,7 +175,7 @@
 			if ($this->shop->get_option('wpsg_mod_statistics_piwik_done') == '1')
 			{
-					
+				
 				$this->trackTarget($this->shop->get_option('wpsg_mod_statistics_piwik_done_target'));
-					
+				
 			}
 			
@@ -186,5 +189,5 @@
 				
  					echo 'piwikTracker.addEcommerceItem("'.wpsg_hspc($p['id']).'", "'.wpsg_hspc($p['name']).'", "", '.wpsg_tf($p['preis']).', '.$p['menge'].');';
-					
+				
 				}
 
@@ -230,5 +233,5 @@
 			
 			if (!$this->usePiwik()) return false;
-						 
+			
 			$url = $this->shop->get_option('wpsg_mod_statistics_piwik_url');
 			
@@ -418,5 +421,5 @@
 			}
 		}
-			 
+		
 		/**
 		 * Sammeln von Chartdaten und RÃŒckgabe
@@ -505,5 +508,5 @@
 			);
 
-				
+			
 			//Statistikarray nach order sortieren 
 			$this->shop->view['charts'] = wpsg_array_csort($this->shop->view['charts'], 'order');
@@ -511,5 +514,5 @@
 			//Default-Statistiken laden wenn keine REQUEST-Parameter fÃŒr id bzw. Type ÃŒbergeben wurden
 			if (!isset($_REQUEST['id'])) 
-			{ 
+			{
 				$_REQUEST['id'] = '0'; 
 				$temp = $this->shop->view['charts'][$_REQUEST['id']]['type'];
@@ -533,5 +536,5 @@
 			 */
 
-			if (($_REQUEST['page'] == 'wpsg-Statistics') && (wpsg_isSizedString($_REQUEST['id']) != 4))
+			if (($_REQUEST['page'] == 'wpsg-Statistics') && (wpsg_getStr($_REQUEST['id']) != "4"))
 			{
 				if (is_array($this->shop->view['charts'][$_REQUEST['id']]['type'][$_REQUEST['type']]['js']) && count(wpsg_getStr($this->shop->view['charts'][$_REQUEST['id']]['type'][$_REQUEST['type']])) > 0)
@@ -556,5 +559,5 @@
 			$this->shop->view['filter'] = array();
 			if (wpsg_isSizedArray($_REQUEST['filter'])) $this->shop->view['filter'] = $_REQUEST['filter'];
-						
+			
 			if (!isset($this->shop->view['filter']['standard'])) { $this->shop->view['filter']['standard'] = '0'; }
 			
@@ -595,11 +598,10 @@
 				}
 */				
-				if (($_REQUEST['page'] == 'wpsg-Statistics') && (wpsg_isSizedString($_REQUEST['id']) != 4))
+
+				if (($_REQUEST['page'] == 'wpsg-Statistics'))
 				{
-					$this->shop->view['chart']['data'] = $objchartClass->$chartFunction($this->shop->view['standardFilter'][$this->shop->view['filter']['standard']]['point'], array('relatedpoint' => $this->shop->view['standardFilter'][wpsg_getStr($this->shop->view['filter']['related'])]['point'], 'order' => wpsg_getStr($this->shop->view['filter']['order']), 'sort' => wpsg_getStr($this->shop->view['filter']['sort'])));
-					$this->shop->view['chart']['info'] = $this->shop->view['charts'][$_REQUEST['id']]['type'][$_REQUEST['type']];
-				}
-				else
-				{
+					//$this->shop->view['chart']['data'] = $objchartClass->$chartFunction($this->shop->view['standardFilter'][$this->shop->view['filter']['standard']]['point'], array('relatedpoint' => $this->shop->view['standardFilter'][wpsg_getStr($this->shop->view['filter']['related'])]['point'], 'order' => wpsg_getStr($this->shop->view['filter']['order']), 'sort' => wpsg_getStr($this->shop->view['filter']['sort'])));
+					//$this->shop->view['chart']['info'] = $this->shop->view['charts'][$_REQUEST['id']]['type'][$_REQUEST['type']];
+
 					$o = wpsg_getStr($this->shop->view['filter']['order']);
 					$s = wpsg_getStr($this->shop->view['filter']['sort']);
@@ -607,5 +609,10 @@
 					$p = $this->shop->view['standardFilter'][$this->shop->view['filter']['standard']]['point'];
 					$this->shop->view['chart']['data'] = $objchartClass->$chartFunction($p, array('relatedpoint' => $r, 'order' => $o, 'sort' => $s));
-
+					//$this->shop->view['chart']['info'] = $this->shop->view['charts'][$_REQUEST['id']]['type'][$_REQUEST['type']];
+				}
+
+				if (($_REQUEST['page'] == 'wpsg-Statistics') && (wpsg_getStr($_REQUEST['id']) != 4))
+				{
+					$this->shop->view['chart']['info'] = $this->shop->view['charts'][$_REQUEST['id']]['type'][$_REQUEST['type']];
 				}
 				
@@ -648,5 +655,5 @@
 		public function settings_edit()
 		{
-						
+			
 			$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_statistics/settings_edit.phtml');
 			
@@ -692,7 +699,7 @@
 
 			$this->shop->update_option('wpsg_mod_statistics_googlekey', $_REQUEST['wpsg_mod_statistics_googlekey']);
-				
-		}
-		 
+			
+		}
+		
 		public function get_pagetrackingcode()
 		{
@@ -783,5 +790,5 @@
 				'wpsg_mod_statistics_piwik_done'
 			);
-				
+			
 			foreach ($arConfPiwik as $c) { if ($this->shop->get_option($c) == '1') { return true; } }
 			
Index: /views/admin/form/emailconf.phtml
===================================================================
--- /views/admin/form/emailconf.phtml	(revision 5943)
+++ /views/admin/form/emailconf.phtml	(revision 5945)
@@ -18,5 +18,5 @@
 		<div class="wpsg_hinweis">
 			<strong><?php echo __('Aktueller Anhang', 'wpsg') ?>: </strong><?php echo ((wpsg_isSizedString($this->get_option('wpsg_'.$this->view['field_key'].'_attachfile')))?$this->get_option('wpsg_'.$this->view['field_key'].'_attachfile'):__('keiner', 'wpsg')); ?>
-			<?php echo ((wpsg_isSizedString($this->get_option('wpsg_kundenmail_attachfile')))?'<a class="wpsg_icon wpsg_icon_right wpsg_icon_remove" titel="'.__('Datei entfernen', 'wpsg').'" href="'.WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&amp;subaction='.$_REQUEST['subaction'].'&amp;cmd=del_attach_file"></a>':''); ?>
+			<?php echo ((wpsg_isSizedString($this->get_option('wpsg_kundenmail_attachfile')))?'<a class="wpsg_glyphicon_right glyphicon glyphicon-minus-sign" titel="'.__('Datei entfernen', 'wpsg').'" href="'.WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&amp;subaction='.$_REQUEST['subaction'].'&amp;cmd=del_attach_file"></a>':''); ?>
 		</div>
 		<br />
Index: /views/admin/konfiguration.phtml
===================================================================
--- /views/admin/konfiguration.phtml	(revision 5943)
+++ /views/admin/konfiguration.phtml	(revision 5945)
@@ -84,5 +84,5 @@
 					<div class="wpsg_form_right">
 						<p><?php echo __("Die Version der Datenbank stimmt nicht mit der installierten Version ÃŒberein!<br />Bitte klicken Sie auf ", "wpsg").'<a href="'.WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&amp;subaction=allgemein&amp;do=update&amp;submit=1&amp;noheader=1">'.__("Aktualisieren", "wpsg").'</a>&nbsp;('.__("Produkte etc. werden dabei nicht gelÃ¶scht.", "wpsg"); ?>)</p>				
-						<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" class="wpsg_form_help"></a>
+						<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" class="wpsg_glyphicon_right glyphicon glyphicon-question-sign"></a>
 					</div>
 					<div class="wpsg_clear"></div>
@@ -91,5 +91,5 @@
 				<?php wpsg_drawForm_TextStart(); ?>		
 				<?php echo WPSG_VERSION; ?>&nbsp;<a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&amp;subaction=allgemein&amp;do=update&amp;submit=1&amp;noheader=1"><?php echo __("Aktualisieren", "wpsg"); ?></a>
-				<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" class="wpsg_form_help"></a>
+				<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=DBUpdate" class="wpsg_glyphicon_right glyphicon glyphicon-question-sign"></a>
 				<?php echo wpsg_drawForm_TextEnd(__('Installierte DB Version', 'wpsg')); ?>	
 				<?php } ?>
Index: /views/mods/mod_deliverynote/order_view_content.phtml
===================================================================
--- /views/mods/mod_deliverynote/order_view_content.phtml	(revision 5943)
+++ /views/mods/mod_deliverynote/order_view_content.phtml	(revision 5945)
@@ -6,9 +6,6 @@
 
 ?>
-<div class="postbox" id="wpsg_deliverynote">		
-	<h3 class="wpsg_handlediv">
-		<span title="<?php echo __('Zum Ein/Ausklappen hier klicken', 'wpsg'); ?>" class="handlediv"><br /></span>
-		<span><?php echo __('Lieferschein', 'wpsg'); ?></span>
-	</h3>
+<?php echo wpsg_drawForm_AdminboxStart(__('Lieferscheine', 'wpsg'));  ?>
+
 	<div class="inside">
 	
@@ -28,10 +25,10 @@
 		
 		<?php if (wpsg_isSizedArray($this->view['wpsg_mod_deliverynote']['arNoDeliveredProducts'])) { ?>
-			<fieldset style="border:1px solid #999999; width:100%;">			
-				<legend style="margin-left:10px; margin-right:10px;"><?php echo __('Neuer Lieferschein', 'wpsg'); ?></legend>
+			<fieldset>			
+				<legend ><?php echo __('Neuer Lieferschein', 'wpsg'); ?></legend>
 				
 				<form target="_blank" method="post" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&mod=wpsg_mod_deliverynote&cmd=deliverynote&noheader=1&edit_id=<?php echo $this->view['data']['id']; ?>">
 				
-					<div style="padding:5px;">
+					<div>
 						
 						<label style="height:25px; width:240px; float:left; margin-top:10px;">	
@@ -112,5 +109,6 @@
 	
 	</div>
-</div>
+
+<?php echo wpsg_drawForm_AdminboxEnd(); ?>
 
 <script type="text/javascript">/* <![CDATA[ */
Index: /views/mods/mod_deliverynote/settings_edit.phtml
===================================================================
--- /views/mods/mod_deliverynote/settings_edit.phtml	(revision 5943)
+++ /views/mods/mod_deliverynote/settings_edit.phtml	(revision 5945)
@@ -24,5 +24,5 @@
                 <a href="<?php echo $this->view['wpsg_mod_deliverynote']['bp']; ?>" target="_blank"><?php echo __('Derzeitiges Briefpapier', 'wpsg'); ?></a>
                 <?php } ?>
-                <a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_deliverynote_bp" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_deliverynote_bp"></a>
+                <a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_deliverynote_bp" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_deliverynote_bp"></a>
                 <input type="file" name="wpsg_mod_deliverynote_bp">
                 <?php $strSuffix = ''; if ($this->view['wpsg_mod_deliverynote']['bp'] !== false) { $strSuffix = '
@@ -39,5 +39,5 @@
                 <a href="<?php echo $this->view['wpsg_mod_deliverynote']['logo']; ?>" target="_blank"><?php echo __('Derzeitiges Logo', 'wpsg'); ?></a>
                 <?php } ?>
-                <a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_deliverynote_logo" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_deliverynote_logo"></a>
+                <a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_deliverynote_logo" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_deliverynote_logo"></a>
                 <input type="file" name="wpsg_mod_deliverynote_logo">
                 <?php $strSuffix = ''; if ($this->view['wpsg_mod_deliverynote']['logo'] !== false) { $strSuffix = '  
Index: /views/mods/mod_downloadplus/settings_edit.phtml
===================================================================
--- /views/mods/mod_downloadplus/settings_edit.phtml	(revision 5943)
+++ /views/mods/mod_downloadplus/settings_edit.phtml	(revision 5945)
@@ -55,13 +55,13 @@
             <?php echo wpsg_drawForm_TextStart(); ?>
             <p><?php echo wpsg_translate(__('Kann <a href="#1#">hier</a> konfiguriert werden.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=emailconf#pdfdownloadcronmail'); ?></p>
-			<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_individualisierungsbericht" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_individualisierungsbericht"></a>
+			<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_individualisierungsbericht" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_individualisierungsbericht"></a>
             <?php echo wpsg_drawForm_TextEnd(__('Mail fÃŒr Individualisierungsbericht', 'wpsg'), array('noP' => true)); ?>
             <?php echo wpsg_drawForm_TextStart(); ?>
             <p><?php echo wpsg_translate(__('Kann <a href="#1#">hier</a> konfiguriert werden.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=emailconf#pdfdownloadfiles'); ?></p>
-			<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_kundenmail" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_kundenmail"></a>
+			<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_kundenmail" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_kundenmail"></a>
             <?php echo wpsg_drawForm_TextEnd(__('Mail fÃŒr Downloads an Kunden', 'wpsg'), array('noP' => true)); ?>
             <?php echo wpsg_drawForm_TextStart(); ?>
             <p><?php echo (($this->get_option('wpsg_lastCron') > 0)?wpsg_formatTimestamp($this->get_option('wpsg_lastCron')):__('Noch nicht ausgefÃŒhrt', 'wpsg')); ?></p>
-			<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_einstellungen_cron" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_einstellungen_cron"></a>
+			<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_einstellungen_cron" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_einstellungen_cron"></a>
             <?php echo wpsg_drawForm_TextEnd(__('Letzte AusfÃŒhrung des Crons', 'wpsg'), array('noP' => true)); ?>
 
Index: /views/mods/mod_ordervars/order_view_sidebar.phtml
===================================================================
--- /views/mods/mod_ordervars/order_view_sidebar.phtml	(revision 5943)
+++ /views/mods/mod_ordervars/order_view_sidebar.phtml	(revision 5945)
@@ -25,5 +25,5 @@
 					},
 					submit  : '<?php echo __('Speichern', 'wpsg'); ?>',
-					data   : '<?php echo json_encode(wpsg_array_merge((array)$ov['auswahl'], array('not_set' => __('Keine Angabe', 'wpsg')))); ?>',
+					data   : <?php echo wpsg_prepare_for_inlineEdit(wpsg_array_merge((array)$ov['auswahl'], array('not_set' => __('Keine Angabe', 'wpsg')))); ?>,
 					type   : 'select',
 					placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
@@ -49,5 +49,5 @@
 					},
 					submit  : '<?php echo __('Speichern', 'wpsg'); ?>',
-					data   : '<?php echo json_encode(array('1' => __('Ja', 'wpsg'), '0' => __('Nein', 'wpsg'))); ?>',
+					data   : <?php echo wpsg_prepare_for_inlineEdit(array('1' => __('Ja', 'wpsg'), '0' => __('Nein', 'wpsg'))); ?>,
 					type   : 'select',
 					placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
Index: /views/mods/mod_ordervars/ov_list.phtml
===================================================================
--- /views/mods/mod_ordervars/ov_list.phtml	(revision 5943)
+++ /views/mods/mod_ordervars/ov_list.phtml	(revision 5945)
@@ -62,5 +62,5 @@
                         },
                         submit: '<?php echo __('Speichern', 'wpsg'); ?>',
-                        data: '<?php echo json_encode($this->mod->arTypen); ?>',
+                        data: <?php echo wpsg_prepare_for_inlineEdit($this->mod->arTypen); ?>,
                         type: 'select',
                         placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
Index: /views/mods/mod_packagetracking/settings_edit.phtml
===================================================================
--- /views/mods/mod_packagetracking/settings_edit.phtml	(revision 5943)
+++ /views/mods/mod_packagetracking/settings_edit.phtml	(revision 5945)
@@ -60,5 +60,5 @@
 			<div class="fulltab">
 				<?php echo __('Anbieter fÃŒr Paketverfolgung', 'wpsg'); ?>
-				<a title="<?php echo __('Neuem Anbieter anlegen', 'wpsg'); ?>" href="" class="wpsg_icon wpsg_icon_right wpsg_icon_add" onclick="return wpsg_mod_packagetracking_add();"></a>
+				<a title="<?php echo __('Neuen Anbieter anlegen', 'wpsg'); ?>" href="" class="wpsg_glyphicon_right glyphicon glyphicon-plus-sign" onclick="return wpsg_mod_packagetracking_add();"></a>
 			</div>
 		</div>
Index: /views/mods/mod_packagetracking/settings_edit_list.phtml
===================================================================
--- /views/mods/mod_packagetracking/settings_edit_list.phtml	(revision 5943)
+++ /views/mods/mod_packagetracking/settings_edit_list.phtml	(revision 5945)
@@ -18,5 +18,5 @@
 		<td class="wpsg_value"><?php echo $p['id']; ?></td>	
 		<td class="wpsg_delcol">
-			<a class="wpsg_icon wpsg_icon_remove" href="#" title="<?php echo __('Anbieter lÃ¶schen', 'wpsg'); ?>" onclick="return wpsg_mod_packagetracking_delete(<?php echo $p['id']; ?>);"></a>					
+			<a class="wpsg_glyphicon_right glyphicon glyphicon-minus-sign" href="#" title="<?php echo __('Anbieter lÃ¶schen', 'wpsg'); ?>" onclick="return wpsg_mod_packagetracking_delete(<?php echo $p['id']; ?>);"></a>					
 		</td>
 	</tr>
@@ -26,5 +26,5 @@
 		<td class="wpsg_delcol">
 			
-			<a class="wpsg_form_help" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_name" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_name"></a>
+			<a class="wpsg_glyphicon_right glyphicon glyphicon-question-sign" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_name" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_name"></a>
 		
 		</td>
@@ -35,5 +35,5 @@
 		<td class="wpsg_delcol">
 		
-			<a class="wpsg_form_help" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_url" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_url"></a>
+			<a class="wpsg_glyphicon_right glyphicon glyphicon-question-sign" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_url" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_url"></a>
 							
 			<script type="text/javascript">/* <![CDATA[ */
Index: /views/mods/mod_packagetracking/wpsg_mod_versandarten_listrow.phtml
===================================================================
--- /views/mods/mod_packagetracking/wpsg_mod_versandarten_listrow.phtml	(revision 5943)
+++ /views/mods/mod_packagetracking/wpsg_mod_versandarten_listrow.phtml	(revision 5945)
@@ -21,5 +21,5 @@
 	<td class="wpsg_delcol">
 	
-		<a class="wpsg_form_help" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_versandarten" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_versandarten"></a>
+		<a class="wpsg_glyphicon_right glyphicon glyphicon-question-sign" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_versandarten" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_packagetracking_versandarten"></a>
 			
 		<script type="text/javascript">/* <![CDATA[ */
Index: /views/mods/mod_productvariants/admin_show.phtml
===================================================================
--- /views/mods/mod_productvariants/admin_show.phtml	(revision 5943)
+++ /views/mods/mod_productvariants/admin_show.phtml	(revision 5945)
@@ -64,5 +64,5 @@
 								field_id: '<?php echo $var['id']; ?>'
 							},
-							data: '<?php echo json_encode(wpsg_mod_productvariants::$arTypeLabel); ?>',
+							data: <?php echo wpsg_prepare_for_inlineEdit(wpsg_mod_productvariants::$arTypeLabel); ?>,
 							type: 'select'							
 						});	
Index: /views/mods/mod_productvars/order_view_row.phtml
===================================================================
--- /views/mods/mod_productvars/order_view_row.phtml	(revision 5943)
+++ /views/mods/mod_productvars/order_view_row.phtml	(revision 5945)
@@ -37,5 +37,5 @@
 				},
 				submit  : '<?php echo __('Speichern', 'wpsg'); ?>',
-				data   : '<?php echo json_encode(wpsg_array_merge((array)$pv['auswahl'], array('not_set' => __('Keine Angabe', 'wpsg')))); ?>',
+				data   : <?php echo wpsg_prepare_for_inlineEdit(wpsg_array_merge((array)$pv['auswahl'], array('not_set' => __('Keine Angabe', 'wpsg')))); ?>,
 				type   : 'select',
 				placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
@@ -51,5 +51,5 @@
 				},
 				submit  : '<?php echo __('Speichern', 'wpsg'); ?>',
-				data   : '<?php echo json_encode(array('1' => __('Ja', 'wpsg'), '0' => __('Nein', 'wpsg'))); ?>',
+				data   : <?php echo wpsg_prepare_for_inlineEdit(array('1' => __('Ja', 'wpsg'), '0' => __('Nein', 'wpsg'))); ?>,
 				type   : 'select',
 				placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
Index: /views/mods/mod_productvars/pv_list.phtml
===================================================================
--- /views/mods/mod_productvars/pv_list.phtml	(revision 5943)
+++ /views/mods/mod_productvars/pv_list.phtml	(revision 5945)
@@ -43,5 +43,5 @@
 		<td class="wpsg_delcol">
 		
-			<a class="wpsg_icon wpsg_icon_remove" href="#" title="<?php echo __('Produktvariable lÃ¶schen', 'wpsg'); ?>" onclick="return wpsg_removePV(<?php echo $pv['id']; ?>);"></a>
+			<a class="wpsg_glyphicon_right glyphicon glyphicon-minus-sign" href="#" title="<?php echo __('Produktvariable lÃ¶schen', 'wpsg'); ?>" onclick="return wpsg_removePV(<?php echo $pv['id']; ?>);"></a>
 		
 			<script type="text/javascript">/* <![CDATA[ */
@@ -77,5 +77,5 @@
 					},
 					submit: '<?php echo __('Speichern', 'wpsg'); ?>',					
-					data: '<?php echo json_encode($this->mod->arTypen); ?>',
+					data: <?php echo wpsg_prepare_for_inlineEdit($this->mod->arTypen); ?>,
 					type: 'select',
 					placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
Index: /views/mods/mod_productvars/settings_edit.phtml
===================================================================
--- /views/mods/mod_productvars/settings_edit.phtml	(revision 5943)
+++ /views/mods/mod_productvars/settings_edit.phtml	(revision 5945)
@@ -59,5 +59,5 @@
 			<div class="fulltab">
 				<?php echo __('Produktvariablen', 'wpsg'); ?>
-				<a title="<?php echo __('Neue Produktvariable anlegen', 'wpsg'); ?>" href="" class="wpsg_icon wpsg_icon_right wpsg_icon_add" onclick="return wpsg_addPV();"></a>
+				<a title="<?php echo __('Neue Produktvariable anlegen', 'wpsg'); ?>" href="" class="wpsg_glyphicon_right glyphicon glyphicon-plus-sign" onclick="return wpsg_addPV();"></a>
 			</div>
 		</div>
Index: /views/mods/mod_produktattribute/list.phtml
===================================================================
--- /views/mods/mod_produktattribute/list.phtml	(revision 5943)
+++ /views/mods/mod_produktattribute/list.phtml	(revision 5945)
@@ -41,5 +41,5 @@
 				</a>
 				
-				<a id="del_<?php echo $pa['id']; ?>" class="wpsg-glyphlink-td" href="#" title="<?php echo __('Produktvariable lÃ¶schen', 'wpsg'); ?>" onclick="return wpsg_removePV(<?php echo $pv['id']; ?>);">
+				<a id="del_<?php echo $pa['id']; ?>" class="wpsg-glyphlink-td" href="#" title="<?php echo __('Produktvariable lÃ¶schen', 'wpsg'); ?>" onclick="return wpsg_removePV(<?php echo wpsg_getStr($pv['id']); ?>);">
 					<span class="glyphicon glyphicon-trash"></span>
 				</a>
Index: /views/mods/mod_rechnungen/foottext_list.phtml
===================================================================
--- /views/mods/mod_rechnungen/foottext_list.phtml	(revision 5943)
+++ /views/mods/mod_rechnungen/foottext_list.phtml	(revision 5945)
@@ -23,5 +23,5 @@
 		<td class="col_aktion">
 		
-			<a onclick="return wpsg_removeFooter(<?php echo $key; ?>);" title="<?php echo __('FuÃtext lÃ¶schen', 'wpsg'); ?>'" href="#" class="wpsg_icon wpsg_icon_center wpsg_icon_remove"></a>
+			<a onclick="return wpsg_removeFooter(<?php echo $key; ?>);" title="<?php echo __('FuÃtext lÃ¶schen', 'wpsg'); ?>'" href="#" class="wpsg_glyphicon_right glyphicon glyphicon-minus-sign"></a>
 			
 			<script type="text/javascript">
Index: /views/mods/mod_rechnungen/settings_edit.phtml
===================================================================
--- /views/mods/mod_rechnungen/settings_edit.phtml	(revision 5943)
+++ /views/mods/mod_rechnungen/settings_edit.phtml	(revision 5945)
@@ -27,5 +27,5 @@
                 <a href="<?php echo $this->view['bp']; ?>" target="_blank"><?php echo __('Derzeitiges Briefpapier', 'wpsg'); ?></a>
                 <?php } ?>
-                <a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_bp" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_bp"></a>
+                <a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_bp" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_bp"></a>
                 <input type="file" name="wpsg_rechnungen_bp">
                 <?php $strSuffix = ''; if ($this->view['bp'] !== false) { $strSuffix = '
@@ -42,5 +42,5 @@
                 <a href="<?php echo $this->view['logo']; ?>" target="_blank"><?php echo __('Derzeitiges Logo', 'wpsg'); ?></a>
                 <?php } ?>
-                <a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_logo" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_logo"></a>
+                <a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_logo" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_logo"></a>
                 <input type="file" name="wpsg_rechnungen_logo">
                 <?php $strSuffix = ''; if ($this->view['logo'] !== false) { $strSuffix = '
@@ -90,5 +90,5 @@
 					<td>			
 						<label><input type="checkbox" value="1" name="text[<?php echo $f; ?>][aktiv]" <?php echo ((wpsg_isSizedInt($this->view['arTexte'][$f]['aktiv']))?'checked="checked"':''); ?> />&nbsp;<?php echo __("Aktiv", "wpsg"); ?></label>
-						<a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_fieldconfig" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_fieldconfig"></a>
+						<a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_fieldconfig" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_rechnung_fieldconfig"></a>
 					</td>
 				</tr>
Index: /views/mods/mod_scaleprice/scaleList.phtml
===================================================================
--- /views/mods/mod_scaleprice/scaleList.phtml	(revision 5943)
+++ /views/mods/mod_scaleprice/scaleList.phtml	(revision 5945)
@@ -22,5 +22,5 @@
 		<div class="wpsg_editable" id="wpsg_mod_scaleprice_<?php echo $scale['id']; ?>_value"><?php echo wpsg_ff($scale['value']); ?></div>
 		<p class="waehrung"><?php echo $this->get_option('wpsg_currency'); ?></p>
-		<a class="wpsg_icon wpsg_icon_right wpsg_icon_remove" href="" onclick="return wpsg_mod_scaleprice_remove(<?php echo $scale['id']; ?>);" title=""></a>
+		<a class="wpsg_glyphicon_right glyphicon glyphicon-minus-sign" href="" onclick="return wpsg_mod_scaleprice_remove(<?php echo $scale['id']; ?>);" title=""></a>
 	</div>
 	<div class="wpsg_clear"></div>
@@ -79,5 +79,5 @@
 		<input type="text" class="wpsg_mod_scaleprice_value" name="wpsg_mod_scaleprice_value" value="" id="wpsg_mod_scaleprice_value">
 		<p class="waehrung"><?php echo $this->get_option('wpsg_currency'); ?></p>
-		<a class="wpsg_icon wpsg_icon_right wpsg_icon_add" href="" onclick="return wpsg_mod_scaleprice_add();" title=""></a>								 
+		<a class="wpsg_glyphicon_right glyphicon glyphicon-plus-sign" href="" onclick="return wpsg_mod_scaleprice_add();" title=""></a>								 
 	</div>
 	<div class="wpsg_clear"></div>
Index: /views/mods/mod_statistics/chartturnover/all.phtml
===================================================================
--- /views/mods/mod_statistics/chartturnover/all.phtml	(revision 5943)
+++ /views/mods/mod_statistics/chartturnover/all.phtml	(revision 5945)
@@ -5,4 +5,5 @@
 	if (wpsg_isSizedArray($this->view['chart']['data'])) 
 	{
+		unset($this->view['chart']['data']['template']);
 		
 		for ($i = 0; $i < count($this->view['chart']['data']); $i++)
@@ -43,5 +44,5 @@
 					$k++;
 				}
-			
+
 				if ($j == count($this->view['chart']['data'][$i]['records']) - 1) { 
 			  		$chartJS['area']['area'.$i] = '['.implode(',', $chartJS['area']['area'.$i]).']'; 
@@ -80,5 +81,5 @@
 		 var <?php echo $index; ?> = <?php echo $area; ?>;
 	  <?php } ?>
-		
+
 	  var chartannualturnoverLine = jQuery.jqplot('chartannualturnover-line', [<?php echo implode(',', array_keys($chartJS['area'])); ?>], {
 		  animate: true,
Index: /views/mods/mod_statistics/chartturnover/day.phtml
===================================================================
--- /views/mods/mod_statistics/chartturnover/day.phtml	(revision 5943)
+++ /views/mods/mod_statistics/chartturnover/day.phtml	(revision 5945)
@@ -2,10 +2,16 @@
 
 <?php 
-
+	
 	if (wpsg_isSizedArray($this->view['chart']['data'])) 
 	{
+		$cnt = count($this->view['chart']['data']);
+		unset($this->view['chart']['data']['template']);
+		$cnt = count($this->view['chart']['data']);
 		
 		for ($i = 0; $i < count($this->view['chart']['data']); $i++)
 		{
+			//if (!key_exists('label', $this->view['chart']['data'][$i])) continue;
+			//$lbl = $this->view['chart']['data'][$i]['label'];
+			//if ($lbl == null) continue;
 			
 			$chartJS['legend'][$i] = "{";
@@ -29,28 +35,28 @@
 			{
 					
-			foreach ((array)$this->view['chart']['data'][$i]['records'] as $index => $record)
-			{
+				foreach ((array)$this->view['chart']['data'][$i]['records'] as $index => $record)
+				{
+					
+					//immer das Datum vom Rootelement nutzen
+					$k = 0 ;
+					
+					foreach ($this->view['chart']['data'][0]['records'] as $rindex => $rrecord)
+					{
+						if ($j == $k)
+						{							
+							if (mktime($record['hour'], 0, 0, $record['month'], $record['day'], $record['year']) <= mktime(date_i18n('H'), 0, 0, date_i18n('m'), date_i18n('d'), date_i18n('Y')))
+							{
+								$chartJS['area']['area'.$i][] = "['".$rrecord['year'].'/'.$rrecord['month'].'/'.$rrecord['day']." ".$rrecord['hour'].":00:00', ".wpsg_hspc($record['total'])."]"; 
+							} 
+						}	
+						$k++;
+					}
 				
-				//immer das Datum vom Rootelement nutzen
-				$k = 0 ;
-				
-				foreach ($this->view['chart']['data'][0]['records'] as $rindex => $rrecord)
-				{
-					if ($j == $k)
-					{							
-						if (mktime($record['hour'], 0, 0, $record['month'], $record['day'], $record['year']) <= mktime(date_i18n('H'), 0, 0, date_i18n('m'), date_i18n('d'), date_i18n('Y')))
-						{
-							$chartJS['area']['area'.$i][] = "['".$rrecord['year'].'/'.$rrecord['month'].'/'.$rrecord['day']." ".$rrecord['hour'].":00:00', ".wpsg_hspc($record['total'])."]"; 
-						} 
-					}	
-					$k++;
+					if ($j == count($this->view['chart']['data'][$i]['records']) - 1) { 
+				  		$chartJS['area']['area'.$i] = '['.implode(',', (array)$chartJS['area']['area'.$i]).']'; 
+				  	}
+				  	
+				  	$j++;
 				}
-			
-				if ($j == count($this->view['chart']['data'][$i]['records']) - 1) { 
-			  		$chartJS['area']['area'.$i] = '['.implode(',', (array)$chartJS['area']['area'.$i]).']'; 
-			  	}
-			  	
-			  	$j++;
-			}
 			
 			}
@@ -103,5 +109,5 @@
 	        },
 	        yaxis:{
-                label:'<?php echo wpsg_hspc($this->view['chart']['info']['yaxis']['label']); ?>',
+                label:'<?php echo wpsg_hspc(wpsg_getStr($this->view['chart']['info']['yaxis']['label'])); ?>',
                 tickOptions: {
                 	formatter: wpsg_statistics_number_format
Index: /views/mods/mod_statistics/chartturnover/month.phtml
===================================================================
--- /views/mods/mod_statistics/chartturnover/month.phtml	(revision 5943)
+++ /views/mods/mod_statistics/chartturnover/month.phtml	(revision 5945)
@@ -5,4 +5,5 @@
 	if (wpsg_isSizedArray($this->view['chart']['data'])) 
 	{
+		unset($this->view['chart']['data']['template']);
 		
 		for ($i = 0; $i < count($this->view['chart']['data']); $i++)
@@ -18,5 +19,5 @@
 			$chartJS['legend'][$i] .= "	highlighter: {";
 			
-			$chartJS['legend'][$i] .= "		formatString: '<table><tr><td>%s ".$this->view['chart']['data'][$i]['year'].", %s ".$this->get_option('wpsg_currency')."</td></tr></table>'";
+			$chartJS['legend'][$i] .= "		formatString: '<table><tr><td>%s ".wpsg_getStr($this->view['chart']['data'][$i]['year']).", %s ".$this->get_option('wpsg_currency')."</td></tr></table>'";
 			
 			$chartJS['legend'][$i] .= "	}";
@@ -74,5 +75,5 @@
 		 var <?php echo $index; ?> = <?php echo $area; ?>;
 	  <?php } ?>
-		
+
 	  var chartannualturnoverLine = jQuery.jqplot('chartannualturnover-line', [<?php echo implode(',', array_keys($chartJS['area'])); ?>], {
 		  animate: true,
@@ -90,5 +91,6 @@
 	        xaxis:{
 	          	renderer:jQuery.jqplot.DateAxisRenderer,
-	          	label:'<?php echo wpsg_hspc($this->view['chart']['info']['xaxis']['label']); ?>',
+	          	label:'<?php echo wpsg_hspc(wpsg_getStr($this->view['chart']['info']['xaxis']['label'])); ?>',
+				label:'<?php echo wpsg_hspc(wpsg_getStr($this->view['chart']['data'][0]['label'])); ?>',
 	          	tickOptions:{formatString:'%d'},
 	          	tickInterval: '1 day',
Index: /views/mods/mod_statistics/chartturnover/quarter.phtml
===================================================================
--- /views/mods/mod_statistics/chartturnover/quarter.phtml	(revision 5943)
+++ /views/mods/mod_statistics/chartturnover/quarter.phtml	(revision 5945)
@@ -6,5 +6,6 @@
 	if (wpsg_isSizedArray($this->view['chart']['data'])) 
 	{
-
+		unset($this->view['chart']['data']['template']);
+		
 		for ($i = 0; $i < count($this->view['chart']['data']); $i++)
 		{
@@ -94,5 +95,6 @@
 	      axes:{
 	        xaxis:{
-	          	label:'<?php echo wpsg_hspc($this->view['chart']['info']['xaxis']['label']); ?>',
+	          	label:'<?php echo wpsg_hspc(wpsg_getStr($this->view['chart']['info']['xaxis']['label'])); ?>',
+	          	label:'<?php echo wpsg_hspc(wpsg_getStr($this->view['chart']['data'][0]['label'])); ?>',
 	          	syncTicks: false,
 	          	tickOptions:{formatString:'KW %d'},
Index: /views/mods/mod_statistics/chartturnover/week.phtml
===================================================================
--- /views/mods/mod_statistics/chartturnover/week.phtml	(revision 5943)
+++ /views/mods/mod_statistics/chartturnover/week.phtml	(revision 5945)
@@ -7,4 +7,7 @@
 
 		$series = ''; 
+		$cnt = count($this->view['chart']['data']);
+		unset($this->view['chart']['data']['template']);
+		$cnt = count($this->view['chart']['data']);
 		
 		for ($i = 0; $i < count($this->view['chart']['data']); $i++)
@@ -20,5 +23,5 @@
 			$chartJS['legend'][$i] .= "	highlighter: {";
 			
-			$chartJS['legend'][$i] .= "		formatString: '<table><tr><td>%s ".$this->view['chart']['data'][$i]['year'].", %s ".$this->get_option('wpsg_currency')."</td></tr></table>'";
+			$chartJS['legend'][$i] .= "		formatString: '<table><tr><td>%s ".wpsg_getStr($this->view['chart']['data'][$i]['year']).", %s ".$this->get_option('wpsg_currency')."</td></tr></table>'";
 			
 			$chartJS['legend'][$i] .= "	}";
@@ -98,5 +101,5 @@
 	        },
 	        yaxis:{
-                label:'<?php echo wpsg_hspc($this->view['chart']['info']['yaxis']['label']); ?>',
+                label:'<?php echo wpsg_hspc(wpsg_getStr($this->view['chart']['info']['yaxis']['label'])); ?>',
                 tickOptions: {
                 	formatter: wpsg_statistics_number_format
Index: /views/mods/mod_statistics/chartturnover/year.phtml
===================================================================
--- /views/mods/mod_statistics/chartturnover/year.phtml	(revision 5943)
+++ /views/mods/mod_statistics/chartturnover/year.phtml	(revision 5945)
@@ -5,4 +5,5 @@
 	if (wpsg_isSizedArray($this->view['chart']['data'])) 
 	{
+		unset($this->view['chart']['data']['template']);
 		
 		for ($i = 0; $i < count($this->view['chart']['data']); $i++)
@@ -38,5 +39,5 @@
 						if (mktime(0, 0, 0, $record['month'], 1, $record['year']) <= mktime(0, 0, 0, date_i18n('m'), 1, date_i18n('Y')))
 						{
-							$chartJS['area']['area'.$i][] .= "['".$j."', ".wpsg_hspc($record['total'])."]"; 
+							$chartJS['area']['area'.$i][] = "['".$j."', ".wpsg_hspc($record['total'])."]"; 
 						} 					
 						$chartJS['ticks']['ticks'.$i][] = '['.$j.', \''.$record['tick'].'\']'; 
@@ -98,5 +99,5 @@
         	  rendererOptions:{tickRenderer:
         		  jQuery.jqplot.CanvasAxisTickRenderer}, 
-	          	label:'<?php echo wpsg_hspc($this->view['chart']['info']['xaxis']['label']); ?>',
+	          	label:'<?php echo wpsg_hspc(wpsg_getStr($this->view['chart']['info']['xaxis']['label'])); ?>',
 	          	syncTicks: false,
 	          	tickOptions:{formatString:'%d'},
Index: /views/mods/mod_statistics/chartturnoverperhour/all.phtml
===================================================================
--- /views/mods/mod_statistics/chartturnoverperhour/all.phtml	(revision 5943)
+++ /views/mods/mod_statistics/chartturnoverperhour/all.phtml	(revision 5945)
@@ -5,5 +5,6 @@
 	if (wpsg_isSizedArray($this->view['chart']['data'])) 
 	{
-
+		unset($this->view['chart']['data']['template']);
+		
 		for ($i = 0; $i < count($this->view['chart']['data']); $i++)
 		{
Index: /views/mods/mod_statistics/simplefilter.phtml
===================================================================
--- /views/mods/mod_statistics/simplefilter.phtml	(revision 5943)
+++ /views/mods/mod_statistics/simplefilter.phtml	(revision 5945)
@@ -45,5 +45,5 @@
 		<select name="filter[standard]" id="filter-standard" size="1" onchange="<?php if ($_REQUEST['id'] == 0 || $_REQUEST['id'] == 1) { ?>checkForRelated(this);<?php } ?>">
 		<?php foreach ($this->view['standardFilter'] as $index => $filter) { ?>
-			<option value="<?php echo wpsg_hspc($index)?>" <?php if ($index == $this->view['filter']['standard']) { ?>selected="selected"<?php } ?>><?php echo wpsg_hspc($filter['name']); ?></option>
+			<option value="<?php echo wpsg_hspc($index)?>" <?php if ($index == $this->view['filter']['standard']) { ?>selected="selected"<?php } ?>><?php echo wpsg_hspc(wpsg_getStr($filter['name'])); ?></option>
 		<?php } ?>
 		</select>
Index: /views/mods/mod_statistics/statistics.phtml
===================================================================
--- /views/mods/mod_statistics/statistics.phtml	(revision 5943)
+++ /views/mods/mod_statistics/statistics.phtml	(revision 5945)
@@ -47,6 +47,4 @@
 		                    div.children('div.jqplot-image-container-content').empty();
 		                    div.children('div.jqplot-image-container-content').append(imgelem);
-
-		                    
 		                    
 		                    jQuery('div.jqplot-image-container' + btnId).dialog( { 
@@ -84,5 +82,5 @@
 						<li role="presentation" class="<?php echo ((!isset($_REQUEST['action']))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt"><?php echo __("Statistik", "wpsg"); ?></a></li>
 <!-- 
-						<li role="presentation" class="wpsg_showhide_filter <?php echo (($this->view['hasFilter'] === true)?'active':''); ?>"><a href="#" onclick="return false;"><span class="glyphicon glyphicon-search"></span><?php echo __("Suche", "wpsg"); ?></a></li>
+						<li role="presentation" class="wpsg_showhide_filter <?php echo ((wpsg_getInt($this->view['hasFilter']) === true)?'active':''); ?>"><a href="#" onclick="return false;"><span class="glyphicon glyphicon-search"></span><?php echo __("Suche", "wpsg"); ?></a></li>
 				 		<li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'add'))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt&action=add"><span class="glyphicon glyphicon-plus"></span><?php echo __("HinzufÃŒgen", "wpsg"); ?></a></li>
 -->				 		
Index: /views/mods/mod_targo/order_done.phtml
===================================================================
--- /views/mods/mod_targo/order_done.phtml	(revision 5943)
+++ /views/mods/mod_targo/order_done.phtml	(revision 5945)
@@ -13,4 +13,5 @@
 		$url = $this->get_option('wpsg_mod_targo_url_test');
 	}
+	
 ?>
 
@@ -24,6 +25,6 @@
 -->
 </p>
-
-<form class="wpsg_productform" id="wpsg_produktform" method="post" action="<?php echo $url ?>">
+<script type="text/javascript">document.charset = 'ISO-8859-1';</script>
+<form class="wpsg_productform" id="wpsg_produktform" accept-charset="ISO-8859-1" method="post" action="<?php echo $url ?>">
 
 <input type="image" name="image" src="<?php echo $this->getRessourceURL('gfx/targologo.png'); ?>" alt="<?php echo __('Finanzierung bei Targo beantragen.', 'wpsg'); ?>" style="margin-right:7px;">
@@ -55,7 +56,70 @@
 <?php ?>
 <?php 
+
+if (method_exists($oCustomer, getTitle)) {
+	$titel = $oCustomer->getTitle();
+}
+else
+{
+	$titel = $oCustomer->title;
+}
+$isotitel = '';
+if (($titel == "Herr") || ($titel == "Frau")) $isotitel = toIso($titel);
+
+$dt = $oCustomer->getBirthdate("Y-m-d");
+
+if ($oCustomer->geb == '0000-00-00' || strtotime($dt) === false)
+{
+
+	$bd = '';
+
+}
+else
+{
+
+	$bd = $oCustomer->getBirthdate("Y-m-d");
+
+}
+
+
 function toIso($string) {
-	return mb_convert_encoding($string, "ISO-8859-1");
+	//return mb_convert_encoding($string, "ISO-8859-1");
+    return utf8_decode(utf8_encode($string));
 }
+
+$hash = '';
+$key = '123456';
+$key = $this->get_option('wpsg_mod_targo_hashkey');
+//$param = "amount=5000&koop_id=testidkk89&dealerText=https%3A%2F%2Fwww.targobank.de&documentno=&".
+//		"dealerShopURL=&dealerAbortURL=&dealerID=123456&birthday=1970-12-31";
+
+$arr = Array("koop_id" => $this->get_option('wpsg_mod_targo_koop_id'),
+	"SessionID" => session_id(),
+	"amount" => $brutto,
+	"dealerID" => $this->get_option('wpsg_mod_targo_dealerid'),
+	"dealerText" => ($this->view['targoLink']),
+	"documentno" => $this->view['o_id'],
+	"gender" => $isotitel,
+	"surname" => toIso($oCustomer->getName()),
+	"firstname" => toIso($oCustomer->getFirstname()),
+	"street" => toIso($oOrder->getInvoiceStreetClear(true)),
+	"streetnumber" => toIso($oOrder->getInvoiceStreetNr()),
+	"zip" =>  toIso($oCustomer->getZip()),
+	"city" => toIso($oCustomer->getCity()),
+	"telnocode" => '',
+	"telno" => toIso($oCustomer->getPhone()),
+	"birthday" => $bd,
+	"email" => toIso($oCustomer->getEMail()),
+	"dealerShopURL" => ($this->get_option('wpsg_mod_targo_dealerShopURL')),
+	"dealerAbortURL" => ($this->get_option('wpsg_mod_targo_dealerAbortURL'))
+);
+
+$param = http_build_query($arr);
+
+
+$hash = hash_hmac( 'sha256', $param, $key);	// HMAC-SHA256
+
+// Test
+//$hash = "85ef6ddce9bbebffa250d6f8183f3f727af5f9fda879b73aa0685eb2d9386e70";
 
 ?>
@@ -71,18 +135,8 @@
 
 
-<b>Optionale Daten fÃŒr Targobank</b><br />
-<input type="text" id="dealerShopURL" name="dealerShopURL" value="<?php echo $this->get_option('wpsg_mod_targo_dealerShopURL');?>" placeholder="dealerShopURL"><br />
-<input type="text" id="dealerAbortURL" name="dealerAbortURL" value="<?php echo $this->get_option('wpsg_mod_targo_dealerAbortURL');?>" placeholder="dealerAbortURL"><br />
-<input type="text" id="hash" name="hash" value="" placeholder="hash">(hashkey)<br />
-<input type="text" id="" name="" value="" placeholder=""><br />
 
 
 <b>Adressdaten aus Kundendaten</b><br />
-<?php
-$titel = $oCustomer->getTitle();
-$isotitel = '';
-if (($titel == "Herr") || ($titel == "Frau")) $isotitel = toIso($titel);
-?>
-<input type="text" id="surname" name="gender" value="<?php echo $isotitel;?>" placeholder="titel"><br />
+<input type="text" id="gender" name="gender" value="<?php echo $isotitel;?>" placeholder="titel"><br />
 <input type="text" id="surname" name="surname" value="<?php echo toIso($oCustomer->getName());?>" placeholder="surname"><br />
 <input type="text" id="firstname" name="firstname" value="<?php echo toIso($oCustomer->getFirstname());?>" placeholder="firstname"><br />
@@ -93,23 +147,12 @@
 <input type="text" id="telnocode" name="telnocode" value="" placeholder="vorwahl"><br />
 <input type="text" id="telno" name="telno" value="<?php echo toIso($oCustomer->getPhone());?>" placeholder="telno"><br />
-<input type="text" id="birthday" name="birthday" value="<?php 
-	
-	$dt = $oCustomer->getBirthdate("Y-m-d");
-	
-	if ($oCustomer->geb == '0000-00-00' || strtotime($dt) === false)
-	{
-		
-		echo '';
-		
-	}
-	else
-	{
-		
-		echo $oCustomer->getBirthdate("Y-m-d");
-		
-	}
+<input type="text" id="birthday" name="birthday" value="<?php echo $bd;?>" placeholder="birthday"><br />
+<input type="text" id="email" name="email" value="<?php echo toIso($oCustomer->getEMail());?>"  placeholder="email"><br />
 
-?>" placeholder="birthday"><br />
-<input type="text" id="email" name="email" value="<?php echo toIso($oCustomer->getEMail());?>"  placeholder="email"><br />
+<b>Optionale Daten fÃŒr Targobank</b><br />
+<input type="text" id="dealerShopURL" name="dealerShopURL" value="<?php echo $this->get_option('wpsg_mod_targo_dealerShopURL');?>" placeholder="dealerShopURL"><br />
+<input type="text" id="dealerAbortURL" name="dealerAbortURL" value="<?php echo $this->get_option('wpsg_mod_targo_dealerAbortURL');?>" placeholder="dealerAbortURL"><br />
+<input type="text" id="hash" name="hash" value="<?php echo $hash;?>" placeholder="hash">(hashkey)<br />
+
 
 <input type="submit" id="submit" name="submit" value="submit" >
Index: /views/mods/mod_trustedshops/widget_form.phtml
===================================================================
--- /views/mods/mod_trustedshops/widget_form.phtml	(revision 5943)
+++ /views/mods/mod_trustedshops/widget_form.phtml	(revision 5945)
@@ -9,9 +9,9 @@
 <label>
 	<input type="checkbox" value="1" <?php echo (($this->view['wpsg_mod_trustedshops_vote'] == '1')?'checked="checked"':''); ?> name="<?php echo $this->view['widget']->get_field_name('wpsg_mod_trustedshops_vote'); ?>" id="<?php echo $this->view['widget']->get_field_id('wpsg_mod_trustedshops_vote'); ?>" />&nbsp;<?php echo __('Bewertungen anzeigen', 'wpsg'); ?>
-	<a class="wpsg_form_help" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_trustedshops_vote" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_trustedshops_vote"></a><br />	
+	<a class="glyphicon glyphicon-question-sign" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_trustedshops_vote" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_trustedshops_vote"></a><br />	
 </label>
 <label>
 	<input type="checkbox" value="1" <?php echo (($this->view['wpsg_mod_trustedshops_badge'] == '1')?'checked="checked"':''); ?> name="<?php echo $this->view['widget']->get_field_name('wpsg_mod_trustedshops_badge'); ?>" id="<?php echo $this->view['widget']->get_field_id('wpsg_mod_trustedshops_badge'); ?>" />&nbsp;<?php echo __('Badge anzeigen', 'wpsg'); ?>
-	<a class="wpsg_form_help" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_trustedshops_badge" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_trustedshops_vote"></a><br />
+	<a class="glyphicon glyphicon-question-sign" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_trustedshops_badge" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_mod_trustedshops_vote"></a><br />
 </label>
    
Index: /views/mods/mod_userpayment/list.phtml
===================================================================
--- /views/mods/mod_userpayment/list.phtml	(revision 5943)
+++ /views/mods/mod_userpayment/list.phtml	(revision 5945)
@@ -65,5 +65,5 @@
 							},
 							submit: '<?php echo __('Speichern', 'wpsg'); ?>',
-							data: '<?php echo json_encode(wpsg_tax_groups()); ?>',
+							data: <?php echo wpsg_prepare_for_inlineEdit(wpsg_tax_groups()); ?>,
 							type: 'select',
 							placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
Index: /views/mods/mod_versandarten/list.phtml
===================================================================
--- /views/mods/mod_versandarten/list.phtml	(revision 5943)
+++ /views/mods/mod_versandarten/list.phtml	(revision 5945)
@@ -65,5 +65,5 @@
 						},
 						submit  : '<?php echo __('Speichern', 'wpsg'); ?>',
-						data   : '<?php echo json_encode($this->view['arTypen']); ?>',
+						data   : <?php echo wpsg_prepare_for_inlineEdit($this->view['arTypen']); ?>,
 						type   : 'select',
 						placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
@@ -78,5 +78,5 @@
 						},
 						submit: '<?php echo __('Speichern', 'wpsg'); ?>',
-						data   : '<?php echo json_encode($arVzNamen) ?>',
+						data   : <?php echo wpsg_prepare_for_inlineEdit($arVzNamen) ?>,
 						type   : 'select',
 						placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
@@ -96,5 +96,5 @@
 						},
 						submit: '<?php echo __('Speichern', 'wpsg'); ?>',
-						data: '<?php echo json_encode(wpsg_tax_groups()); ?>',
+						data: <?php echo wpsg_prepare_for_inlineEdit(wpsg_tax_groups()); ?>,
 						type: 'select',
 						placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
@@ -103,16 +103,4 @@
 					});	
 
-					jQuery('#va2_<?php echo $va['id']; ?>_mwst').wpsg_editable('<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_versandarten&do=inlinedit&noheader=1', { 
-						submitdata: {
-							field: 'mwst_key',
-							va_id: '<?php echo $va['id']; ?>'
-						},
-						submit: '<?php echo __('Speichern', 'wpsg'); ?>',
-						data: '{"value":0,"text":"anteilig"},{"value":"a","text":"A"}',
-						type: 'select',
-						placeholder: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>',
-						indicator: '<?php echo __('Speicher ...', 'wpsg'); ?>',
-				    	tooltip: '<?php echo __('Zum Bearbeiten anklicken ...', 'wpsg'); ?>'
-					});	
 					
 					jQuery('#va_<?php echo $va['id']; ?>_aktiv').bind('change', function() {
@@ -244,19 +232,4 @@
 	</tr>
 
-	<tr>
-		<td class="wpsg_label"><?php echo __('Steuersatz', 'wpsg'); ?>:</td>				
-		<td id="va2_<?php echo $va['id']; ?>_mwst" class="wpsg_value wpsg_editable"><?php 
-		
-			$tax_groups = wpsg_tax_groups();
-			//echo wpsg_hspc($tax_groups[$va['mwst_key']]);
-			echo $tax_groups[$va['mwst_key']];
-			
-		?></td>
-		<td class="wpsg_delcol">
-			<a class="wpsg_glyphicon_right glyphicon glyphicon-question-sign" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_shippay_mwst" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_shippay_mwst"></a>
-		</td>
-	</tr> 
-	
-	
 	
 	<?php $this->callMods('wpsg_mod_versandarten_listrow', array(&$va)); ?>
Index: /views/mods/mod_videodownload/settings_edit.phtml
===================================================================
--- /views/mods/mod_videodownload/settings_edit.phtml	(revision 5943)
+++ /views/mods/mod_videodownload/settings_edit.phtml	(revision 5945)
@@ -56,5 +56,5 @@
 				<div class="wpsg_form_right">
 					<p><?php echo (($this->get_option('wpsg_lastCron') > 0)?wpsg_formatTimestamp($this->get_option('wpsg_lastCron')):__('Noch nicht ausgefÃŒhrt', 'wpsg')); ?></p>
-					<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_videodownload_einstellungen_cron" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_videodownload_einstellungen_cron"></a>
+					<a rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_videodownload_einstellungen_cron" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_videodownload_einstellungen_cron"></a>
 				</div>
 				<div class="wpsg_clear"></div>
@@ -128,5 +128,5 @@
 					<td>			
 						<label><input type="checkbox" value="1" name="text[<?php echo $i; ?>][aktiv]" <?php echo (($this->view['arTexte'][$i]['aktiv'] == 1)?'checked="checked"':''); ?> />&nbsp;<?php echo __("Aktiv", "wpsg"); ?></label>
-						<a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_videodownload_fieldconfig" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_videodownload_fieldconfig"></a>
+						<a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_videodownload_fieldconfig" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_videodownload_fieldconfig"></a>
 					</td>
 				</tr>
Index: /views/mods/mod_voucherproduct/settings_edit.phtml
===================================================================
--- /views/mods/mod_voucherproduct/settings_edit.phtml	(revision 5943)
+++ /views/mods/mod_voucherproduct/settings_edit.phtml	(revision 5945)
@@ -34,5 +34,5 @@
 					<a href="<?php echo $this->view['bp']; ?>" target="_blank"><?php echo __('Derzeitiges Briefpapier', 'wpsg'); ?></a>
 					<?php } ?>				
-					<a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_voucherproduct_paper" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_voucherproduct_paper"></a>
+					<a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_voucherproduct_paper" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_voucherproduct_paper"></a>
 					<input type="file" name="wpsg_mod_voucherproduct_bp">
 				</div>
@@ -47,5 +47,5 @@
 				<div class="wpsg_form_right">
 					<p><?php echo wpsg_translate(__('Kann <a href="#1#">hier</a> konfiguriert werden.', 'wpsg'), WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Admin&subaction=emailconf#gutscheinproductmail'); ?>
-					<a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_voucherproduct_mail" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_voucherproduct_mail"></a></p>
+					<a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_voucherproduct_mail" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_voucherproduct_mail"></a></p>
 				</div>
 				<div class="wpsg_clear"></div>
@@ -121,5 +121,5 @@
 					<td>			
 						<label><input type="checkbox" value="1" name="text[<?php echo $i; ?>][aktiv]" <?php echo ((wpsg_isSizedInt($this->view['arTexte'][$i]['aktiv']))?'checked="checked"':''); ?> />&nbsp;<?php echo __("Aktiv", "wpsg"); ?></label>
-						<a style="float:right; position:relative;" class="wpsg_form_help" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_fieldconfig" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_fieldconfig"></a>
+						<a style="float:right; position:relative;" class="glyphicon glyphicon-question-sign" href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_fieldconfig" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=mod_pdfdownload_fieldconfig"></a>
 					</td>
 				</tr>
Index: /views/mods/mod_wirecard/settings_edit.phtml
===================================================================
--- /views/mods/mod_wirecard/settings_edit.phtml	(revision 5943)
+++ /views/mods/mod_wirecard/settings_edit.phtml	(revision 5945)
@@ -27,5 +27,5 @@
 			<?php } ?>
 		</select>
-		<a href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_shippay_mwst" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_shippay_mwst" class="wpsg_form_help"></a>
+		<a href="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_shippay_mwst" rel="?page=wpsg-Admin&subaction=loadHelp&noheader=1&field=wpsg_shippay_mwst" class="glyphicon glyphicon-question-sign"></a>
 	</div>
 	<div class="wpsg_clear"></div>
