Novalnet - Version 1.2.7

Version Notes

1.2.7
Bugfix:
Für ELV DE, ELV AT und CC wurde die Währung fix als 'EUR' übergeben.

The parameter currency was passed over as fixed value 'EUR' for payment modules 'Direct Debit German', 'Direct Debit Austria' and 'Credir Card'.

Allgemeine Bemerkung:
Die Cache-Ordner var/cache und var/session müssen wie immer nach Aktualisierungen geleert werden.

Notice: the cache folders var/cache and var/session must be emptied after updates.

Download this release

Release Info

Developer Magento Core Team
Extension Novalnet
Version 1.2.7
Comparing to
See all releases


Code changes from version 1.2.6 to 1.2.7

app/code/community/Mage/Novalnet/Model/NovalnetCc.php CHANGED
@@ -171,6 +171,8 @@ class Mage_Novalnet_Model_NovalnetCc extends Mage_Payment_Model_Method_Cc
171
  ->settariff($this->getConfigData('tariff_id'))
172
  ->settest_mode((!$this->getConfigData('live_mode'))? 1: 0);
173
 
 
 
174
  if($payment->getAmount()){
175
  $request->setamount($payment->getAmount()*100);
176
  }
171
  ->settariff($this->getConfigData('tariff_id'))
172
  ->settest_mode((!$this->getConfigData('live_mode'))? 1: 0);
173
 
174
+ $request->setcurrency($order->getOrderCurrency());
175
+
176
  if($payment->getAmount()){
177
  $request->setamount($payment->getAmount()*100);
178
  }
app/code/community/Mage/Novalnet/Model/NovalnetElvaustria.php CHANGED
@@ -185,6 +185,8 @@ class Mage_Novalnet_Model_NovalnetElvaustria extends Mage_Payment_Model_Method_A
185
  ->settariff($this->getConfigData('tariff_id'))
186
  ->settest_mode((!$this->getConfigData('live_mode'))? 1: 0);
187
 
 
 
188
  if ($this->getConfigData('acdc_check')){
189
  $request->setacdc($this->getConfigData('acdc_check'));
190
  }
185
  ->settariff($this->getConfigData('tariff_id'))
186
  ->settest_mode((!$this->getConfigData('live_mode'))? 1: 0);
187
 
188
+ $request->setcurrency($order->getOrderCurrency());
189
+
190
  if ($this->getConfigData('acdc_check')){
191
  $request->setacdc($this->getConfigData('acdc_check'));
192
  }
app/code/community/Mage/Novalnet/Model/NovalnetElvgerman.php CHANGED
@@ -188,6 +188,8 @@ class Mage_Novalnet_Model_NovalnetElvgerman extends Mage_Payment_Model_Method_Ab
188
  ->settariff($this->getConfigData('tariff_id'))
189
  ->settest_mode((!$this->getConfigData('live_mode'))? 1: 0);
190
 
 
 
191
  if ($this->getConfigData('acdc_check')){
192
  $request->setacdc($this->getConfigData('acdc_check'));
193
  }
188
  ->settariff($this->getConfigData('tariff_id'))
189
  ->settest_mode((!$this->getConfigData('live_mode'))? 1: 0);
190
 
191
+ $request->setcurrency($order->getOrderCurrency());
192
+
193
  if ($this->getConfigData('acdc_check')){
194
  $request->setacdc($this->getConfigData('acdc_check'));
195
  }
app/design/adminhtml/default/default/template/novalnet/instantbanktransfer/form.phtml CHANGED
@@ -48,67 +48,8 @@ if (isset($_SESSION['adminhtml_quote']["customer_id"]))
48
  <?php $_code=$this->getMethodCode() ?>
49
  <?php $baseUrl=Mage::getBaseUrl('skin') ?>
50
  <div style="position: relative; left: 14em; top: -2.5em">
 
51
  </div>
52
- <ul id="payment_form_<?php echo $_code ?>" style="display:none">
53
- <li>
54
- <div class="input-box">
55
- <label for="<?php echo $_code ?>_cc_type"><?php echo $this->__('Credit Card Type') ?> <span class="required">*</span></label><br />
56
- <select id="<?php echo $_code ?>_cc_type" name="payment[cc_type]" class="required-entry validate-cc-type-select">
57
- <option value=""><?php echo $this->__('--Please Select--')?></option>
58
- <?php $_ccType = $cc_type; #$this->getInfoData('cc_type') ?>
59
- <?php foreach ($this->getCcAvailableTypes() as $_typeCode => $_typeName): ?>
60
- <option value="<?php echo $_typeCode ?>"<?php if($_typeCode==$_ccType): ?> selected="selected"<?php endif ?>><?php echo $_typeName ?></option>
61
- <?php endforeach ?>
62
- </select>
63
- </div>
64
- </li>
65
- <li>
66
- <div class="input-box">
67
- <label for="<?php echo $_code ?>_cc_owner"><?php echo $this->__('Name on Card') ?> <span class="required">*</span></label><br/>
68
- <input type="text" title="<?php echo $this->__('Name on Card') ?>" class="required-entry input-text" id="<?php echo $_code ?>_cc_owner" name="payment[cc_owner]" value="<?php echo $cc_owner; #$this->htmlEscape($this->getInfoData('cc_owner')) ?>"/>
69
- </div>
70
- </li>
71
- <li>
72
- <div class="input-box">
73
- <label for="<?php echo $_code ?>_cc_number"><?php echo $this->__('Credit Card Number') ?> <span class="required">*</span></label><br/>
74
- <input type="text" id="<?php echo $_code ?>_cc_number" name="payment[cc_number]" title="<?php echo$cc_last4;# $this->__('Credit Card Number') ?>" class="input-text validate-cc-number validate-cc-type" value="" />
75
- </div>
76
- </li>
77
- <li>
78
- <div class="input-box">
79
- <label for="<?php echo $_code ?>_expiration"><?php echo $this->__('Expiration Date') ?> <span class="required">*</span></label><br />
80
- <div class="v-fix">
81
- <select id="<?php echo $_code ?>_expiration" style="width:140px;" name="payment[cc_exp_month]" class="required-entry">
82
- <?php $_ccExpMonth = $cc_exp_month; #$this->getInfoData('cc_exp_month') ?>
83
- <?php foreach ($this->getCcMonths() as $k=>$v): ?>
84
- <option value="<?php echo $k?$k:'' ?>"<?php if($k==$_ccExpMonth): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
85
- <?php endforeach ?>
86
- </select>
87
- </div>
88
- <div class="v-fix" style="padding-left:5px;">
89
- <?php $_ccExpYear = $cc_exp_year; #$this->getInfoData('cc_exp_year') ?>
90
- <select id="<?php echo $_code ?>_expiration_yr" style="width:103px;" name="payment[cc_exp_year]" class="required-entry">
91
- <?php foreach ($this->getCcYears() as $k=>$v): ?>
92
- <option value="<?php echo $k?$k:'' ?>"<?php if($k==$_ccExpYear): ?> selected="selected"<?php endif ?>><?php echo $v ?></option>
93
- <?php endforeach ?>
94
- </select>
95
- </div>
96
- </div>
97
- </li>
98
- <?php if($this->hasVerification()): ?>
99
- <li>
100
- <div class="input-box">
101
- <label for="<?php echo $_code ?>_cc_cid"><?php echo $this->__('Card Verification Number') ?> <span class="required">*</span></label><br />
102
- <div class="v-fix"><input type="text" title="<?php echo $this->__('Card Verification Number') ?>" class="required-entry input-text validate-cc-cvn" id="<?php echo $_code ?>_cc_cid" name="payment[cc_cid]" style="width:3em;" value="" /></div>
103
- &nbsp;
104
- <a href="#" class="cvv-what-is-this"><?php echo $this->__('What is this?') ?></a>
105
- </div>
106
- </li>
107
- <?php endif; ?>
108
- <li>
109
- <?php echo $this->__('The amount will be booked from your credit card<BR>with <B>%s</B> note.',$this->getMethod()->getBookingReference());?>
110
- </li>
111
- </ul>
112
  </fieldset>
113
  <?php }?>
114
  <script type="text/javascript">
48
  <?php $_code=$this->getMethodCode() ?>
49
  <?php $baseUrl=Mage::getBaseUrl('skin') ?>
50
  <div style="position: relative; left: 14em; top: -2.5em">
51
+ <img src='<?php echo $baseUrl?>frontend/default/default/images/novalnet/Sofort_Logo_t.jpg' alt='Sofortueberweisung Logo'/>
52
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  </fieldset>
54
  <?php }?>
55
  <script type="text/javascript">
app/design/frontend/default/default/template/novalnet/instantbanktransfer/form.phtml CHANGED
@@ -27,6 +27,7 @@
27
  ?>
28
  <?php #$_code=$this->getMethodCode();?>
29
  <?php
 
30
  $cc_type = $cc_last4 = $cc_owner = $cc_exp_month = $cc_exp_year = '';
31
  $customer_id = '';
32
  if (isset($_SESSION) and isset($_SESSION['customer_base']) and isset($_SESSION['customer_base']['id']))
@@ -48,7 +49,7 @@ else{$allowed = $this->checkUserGroupAccess($user_group_id, $user_group_name);}
48
  <?php $_code=$this->getMethodCode() ?>
49
  <?php $baseUrl=Mage::getBaseUrl('skin') ?>
50
  <div style="position: relative; left: 14em; top: -2.5em">
51
- <img src='<?php echo $baseUrl?>frontend/default/default/images/novalnet/Sofort_Logo_t.jpg' alt='Sofortueberweisung Logo'/>
52
  </div>
53
  </fieldset>
54
  <?php }?>
27
  ?>
28
  <?php #$_code=$this->getMethodCode();?>
29
  <?php
30
+ $allowed = true;
31
  $cc_type = $cc_last4 = $cc_owner = $cc_exp_month = $cc_exp_year = '';
32
  $customer_id = '';
33
  if (isset($_SESSION) and isset($_SESSION['customer_base']) and isset($_SESSION['customer_base']['id']))
49
  <?php $_code=$this->getMethodCode() ?>
50
  <?php $baseUrl=Mage::getBaseUrl('skin') ?>
51
  <div style="position: relative; left: 14em; top: -2.5em">
52
+ <img src='<?php echo $baseUrl?>frontend/default/default/images/novalnet/Sofort_Logo_t.jpg' alt='Sofortueberweisung Logo'/>
53
  </div>
54
  </fieldset>
55
  <?php }?>
package.xml CHANGED
@@ -1,29 +1,27 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Novalnet</name>
4
- <version>1.2.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Novalnet AG ist ein deutsches EPayment - Unternehmen, bietet alle relevanten Zahlungsarten weltweit. / Novalnet is a German based payment service provider, which offers all the available payments and solutions worldwide.</summary>
10
  <description>The NOVALNET AG is an essential component of e-Payment platform that facilitates your company to process all type of payments. As one of the leading company in Online-Payment the NOVALNET AG provides its customers an individual, technically qualified secured Payment system and also the best possible support throughout. NOVALNET AG is not only an e-Payment provider but also we offer our Merchants an optimal strategic solution for easy payment processing which is pocket-friendly for our customer.</description>
11
- <notes>1.2.6 stable
 
 
12
 
13
- Neu:
14
- Es steht eine Liste f&#xFC;r Bestellstatis zur Verf&#xFC;gung statt bislang nur jeweils eines Status
15
-
16
- What's New:
17
- You cann now select a order status from a dropdown list.
18
 
19
  Allgemeine Bemerkung:
20
  Die Cache-Ordner var/cache und var/session m&#xFC;ssen wie immer nach Aktualisierungen geleert werden.
21
 
22
  Notice: the cache folders var/cache and var/session must be emptied after updates.</notes>
23
  <authors><author><name>Dixon Rajdaniel</name><user>auto-converted</user><email>dr@novalnet.de</email></author></authors>
24
- <date>2010-03-08</date>
25
- <time>13:08:24</time>
26
- <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="novalnet"><dir name="cc"><file name="form.phtml" hash="196838e8d027b2bf46c052d606e4e7c6"/><file name="info.phtml" hash="cec3097648d7f53a2ce898c3ef0fdfd4"/></dir><dir name="elvaustria"><file name="form.phtml" hash="91dad9be6ecd4a19ec3e016684b76d71"/><file name="info.phtml" hash="5f1138c9af0f954851f173830cbd6f05"/></dir><dir name="elvgerman"><file name="form.phtml" hash="b4af054ac7786a541f6784ca786f3d99"/><file name="info.phtml" hash="5f1138c9af0f954851f173830cbd6f05"/></dir><dir name="instantbanktransfer"><file name="form.phtml" hash="27dce7378209ee7ee839fde490b38815"/><file name="info.phtml" hash="1735a3fec2b6f55a317161a6b6695114"/></dir><dir name="invoice"><file name="form.phtml" hash="2dcea7005b16c665e523ecd362c5dd03"/><file name="info.phtml" hash="995bdbdb29181b0e68ab72e97c54ed77"/></dir><dir name="phonepayment"><file name="form.phtml" hash="715e3cfbda4eb427ad53bc0eff82f271"/><file name="info.phtml" hash="f905f359e8bafa12d31b65ce6c710743"/></dir><dir name="prepayment"><file name="form.phtml" hash="63fa5a47af9d203d1b72502b3fd958fb"/><file name="info.phtml" hash="f905f359e8bafa12d31b65ce6c710743"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="novalnet"><dir name="cc"><file name="form.phtml" hash="7f116332fc720c3cc5aec141343f340f"/><file name="info.phtml" hash="c606874c228dc547b5ee058169c0536d"/></dir><dir name="elvaustria"><file name="form.phtml" hash="119db3e733935da40a8868a21daad41a"/><file name="info.phtml" hash="df166d57f6680b5945706ebeb88c28e0"/></dir><dir name="elvgerman"><file name="form.phtml" hash="9a53f1912c0f7eb9eefa667650fe133a"/><file name="info.phtml" hash="df166d57f6680b5945706ebeb88c28e0"/></dir><dir name="instantbanktransfer"><file name="failure.phtml" hash="d33ccb69a08a2195df3586bf36dc9d85"/><file name="form.phtml" hash="efda97400504ef4b38f6e5689eb24afb"/><file name="info.phtml" hash="dc0e26c00ce9abd340e32e5f99c03fc4"/></dir><dir name="invoice"><file name="form.phtml" hash="94ff33ec2dedd22cf9454923c7742e7e"/><file name="info.phtml" hash="f8d4c1a6d3f9fb3d8278e7fa82d661b8"/></dir><dir name="phonepayment"><file name="form.phtml" hash="d7fe99d0203dc26b92a55640a849bbe0"/><file name="info.phtml" hash="6a50f5400b1c9b38629ea9314a08d3b1"/></dir><dir name="prepayment"><file name="form.phtml" hash="87a76df5e6ddaa442bd3a544b152eab7"/><file name="info.phtml" hash="6a50f5400b1c9b38629ea9314a08d3b1"/></dir><dir name="secure"><file name="failure.phtml" hash="d33ccb69a08a2195df3586bf36dc9d85"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_AT"><file name="Mage_Novalnet.csv" hash="38bdc4d98aad5d27ceac773d5fa6d6f7"/></dir><dir name="de_CH"><file name="Mage_Novalnet.csv" hash="38bdc4d98aad5d27ceac773d5fa6d6f7"/></dir><dir name="de_DE"><file name="Mage_Novalnet.csv" hash="38bdc4d98aad5d27ceac773d5fa6d6f7"/></dir><dir name="en_US"><file name="Mage_Novalnet.csv" hash="7608edbf9414eb688f345715f475700b"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="novalnet"><file name="acdc_info.png" hash="fa69e3f3098c4f85d9d3c796d82bdf0a"/><file name="AE_Logo.png" hash="ed3b558031a1f03e1bd536ecf1233e0e"/><file name="ELV_Logo.png" hash="b265493a083f03e4da7d24c23cc55b67"/><file name="MC_Logo.png" hash="cd17acdae3de28aeff7da7952d2ef802"/><file name="NN_Logo.png" hash="e17794ee0b984fd6e1ec2b884da1a29b"/><file name="NN_Logo_T.png" hash="4d442efcb94c9fee7749022478a9d1f3"/><file name="Sofort_Logo_t.jpg" hash="3b88302d88393b582c1cccd152e267bc"/><file name="VI_Logo.png" hash="5e963373aa1db58369730238cf311548"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Mage"><dir name="Novalnet"><dir name="Block"><dir name="Cc"><file name="Form.php" hash="d85d4f5f3cfc19abee8a3b9388de7fe7"/><file name="Info.php" hash="c96a58aa8542b8cbe375650206b40cd8"/></dir><dir name="Elvaustria"><file name="Form.php" hash="deaa6cef24778a8267f269852d295ea8"/><file name="Info.php" hash="d3b662ae5a3b5c795ebb8a1b2e3ab62c"/></dir><dir name="Elvgerman"><file name="Form.php" hash="d50a54a153cb9f72f257ed217ea6f7ab"/><file name="Info.php" hash="4517cd593bfdb4e02a84cc11259ab3ee"/></dir><dir name="Instantbanktransfer"><file name="Failure.php" hash="eff4ad5092570e0a6aac5560aa1466a4"/><file name="Form.php" hash="479141cd4ebf61820c702e3032796c44"/><file name="Info.php" hash="9ba8ff30244f48409aadb4671b7dd02f"/><file name="Redirect.php" hash="a877cfb3bda97ce9014f0e9d5ca8e001"/></dir><dir name="Invoice"><file name="Form.php" hash="09416dc8b843b8edbec01a2a5ae3b96c"/><file name="Info.php" hash="5525c9ae3534663b5d5da0a326c9c2fa"/></dir><dir name="Phonepayment"><file name="Form.php" hash="f7cbfe3fe0cf97ae69108ad5d4e9cf82"/><file name="Info.php" hash="1d3542d6eba2396d2ac2908b3932a181"/></dir><dir name="Prepayment"><file name="Form.php" hash="2742a76acca7614d9dcfd0ec130c7334"/><file name="Info.php" hash="9cab5ed40e74dca7fdc76b819ee11de6"/></dir><dir name="Secure"><file name="Failure.php" hash="38cdb224914c9551cbdb0b884b808a33"/><file name="Redirect.php" hash="3d58b472c0a3c1391f8edbf5cfdd7bb9"/></dir></dir><dir name="controllers"><file name="InstantbanktransferController.php" hash="c9c98fff630a33c8abfb212ccc206b3e"/><file name="InstantbanktransferController_orig.php" hash="513e95d803149b253c41374d59ced219"/><file name="SecureController.php" hash="be31b2d2a8af3a0652092af0d73597b7"/></dir><dir name="etc"><file name="config.xml" hash="3885351b7c88a2ba997aa50fae6f2ea8"/><file name="system.xml" hash="2419b422f36f9107caefc87d4a7ebbf3"/></dir><dir name="Helper"><file name="Data.php" hash="5cd27f9fbb7e3b7083c3d80c8354a5d3"/></dir><dir name="Model"><file name="include_all.php" hash="bd2d91378b834650e3bff5afebd58236"/><file name="NovalnetCc.php" hash="a8bed194da15b4da385c548add139423"/><file name="NovalnetElvaustria.php" hash="dd142fb5dc8655d940b8697627d16226"/><file name="NovalnetElvgerman.php" hash="dad17876edd27b760b3eb8a7c201e4be"/><file name="NovalnetInstantbanktransfer.php" hash="7cbbc5bb874713fbbd6da7e2f91b232f"/><file name="NovalnetInvoice.php" hash="7b4fc4bbd6e6372a6d33bfe0a2598303"/><file name="NovalnetPhonepayment.php" hash="df678a8fb2c52a1c30aae8fdcf0411c3"/><file name="NovalnetPrepayment.php" hash="82750d0ae7a55e5bfd2236181d35bc2f"/><file name="NovalnetSecure.php" hash="c632847a65c30471022ec96913f1370f"/><dir name="Mysql4"><file name="Setup.php" hash="bda93bd1825c67b2eac9943ec42076f1"/></dir><dir name="Novalnet"><file name="Request.php" hash="87fd92d8890377ab2e3fb1dc2c1790bf"/><file name="Result.php" hash="fa36462e819f3581e27d50b201d9fb99"/><dir name="Source"><file name="Cctype.php" hash="e886ba7736877e589abfd6f7343f98d4"/></dir></dir></dir><dir name="sql"><dir name="novalnet_setup"><file name="mysql4-install-1.0.0.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.0.3-1.1.0.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.0-1.1.1.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.1-1.1.2.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.2-1.1.3.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.3-1.1.4.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.4-1.1.5.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.7-1.1.8.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.8-1.1.9.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.9-1.2.0.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.3-1.2.4.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.4-1.2.5.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_Novalnet.xml" hash="752f2f1df5ae673d9deafdaa6f021b32"/></dir></target></contents>
27
  <compatible/>
28
  <dependencies/>
29
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Novalnet</name>
4
+ <version>1.2.7</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Novalnet AG ist ein deutsches EPayment - Unternehmen, bietet alle relevanten Zahlungsarten weltweit. / Novalnet is a German based payment service provider, which offers all the available payments and solutions worldwide.</summary>
10
  <description>The NOVALNET AG is an essential component of e-Payment platform that facilitates your company to process all type of payments. As one of the leading company in Online-Payment the NOVALNET AG provides its customers an individual, technically qualified secured Payment system and also the best possible support throughout. NOVALNET AG is not only an e-Payment provider but also we offer our Merchants an optimal strategic solution for easy payment processing which is pocket-friendly for our customer.</description>
11
+ <notes>1.2.7
12
+ Bugfix:
13
+ F&#xFC;r ELV DE, ELV AT und CC wurde die W&#xE4;hrung fix als 'EUR' &#xFC;bergeben.
14
 
15
+ The parameter currency was passed over as fixed value 'EUR' for payment modules 'Direct Debit German', 'Direct Debit Austria' and 'Credir Card'.
 
 
 
 
16
 
17
  Allgemeine Bemerkung:
18
  Die Cache-Ordner var/cache und var/session m&#xFC;ssen wie immer nach Aktualisierungen geleert werden.
19
 
20
  Notice: the cache folders var/cache and var/session must be emptied after updates.</notes>
21
  <authors><author><name>Dixon Rajdaniel</name><user>auto-converted</user><email>dr@novalnet.de</email></author></authors>
22
+ <date>2010-03-16</date>
23
+ <time>17:01:13</time>
24
+ <contents><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="novalnet"><dir name="cc"><file name="form.phtml" hash="196838e8d027b2bf46c052d606e4e7c6"/><file name="info.phtml" hash="cec3097648d7f53a2ce898c3ef0fdfd4"/></dir><dir name="elvaustria"><file name="form.phtml" hash="91dad9be6ecd4a19ec3e016684b76d71"/><file name="info.phtml" hash="5f1138c9af0f954851f173830cbd6f05"/></dir><dir name="elvgerman"><file name="form.phtml" hash="b4af054ac7786a541f6784ca786f3d99"/><file name="info.phtml" hash="5f1138c9af0f954851f173830cbd6f05"/></dir><dir name="instantbanktransfer"><file name="form.phtml" hash="ebce5d0a70429f76b8010477a9212771"/><file name="info.phtml" hash="1735a3fec2b6f55a317161a6b6695114"/></dir><dir name="invoice"><file name="form.phtml" hash="2dcea7005b16c665e523ecd362c5dd03"/><file name="info.phtml" hash="995bdbdb29181b0e68ab72e97c54ed77"/></dir><dir name="phonepayment"><file name="form.phtml" hash="715e3cfbda4eb427ad53bc0eff82f271"/><file name="info.phtml" hash="f905f359e8bafa12d31b65ce6c710743"/></dir><dir name="prepayment"><file name="form.phtml" hash="63fa5a47af9d203d1b72502b3fd958fb"/><file name="info.phtml" hash="f905f359e8bafa12d31b65ce6c710743"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="novalnet"><dir name="cc"><file name="form.phtml" hash="7f116332fc720c3cc5aec141343f340f"/><file name="info.phtml" hash="c606874c228dc547b5ee058169c0536d"/></dir><dir name="elvaustria"><file name="form.phtml" hash="119db3e733935da40a8868a21daad41a"/><file name="info.phtml" hash="df166d57f6680b5945706ebeb88c28e0"/></dir><dir name="elvgerman"><file name="form.phtml" hash="9a53f1912c0f7eb9eefa667650fe133a"/><file name="info.phtml" hash="df166d57f6680b5945706ebeb88c28e0"/></dir><dir name="instantbanktransfer"><file name="failure.phtml" hash="d33ccb69a08a2195df3586bf36dc9d85"/><file name="form.phtml" hash="13da39c9be707f16e283983f996282be"/><file name="info.phtml" hash="dc0e26c00ce9abd340e32e5f99c03fc4"/></dir><dir name="invoice"><file name="form.phtml" hash="94ff33ec2dedd22cf9454923c7742e7e"/><file name="info.phtml" hash="f8d4c1a6d3f9fb3d8278e7fa82d661b8"/></dir><dir name="phonepayment"><file name="form.phtml" hash="d7fe99d0203dc26b92a55640a849bbe0"/><file name="info.phtml" hash="6a50f5400b1c9b38629ea9314a08d3b1"/></dir><dir name="prepayment"><file name="form.phtml" hash="87a76df5e6ddaa442bd3a544b152eab7"/><file name="info.phtml" hash="6a50f5400b1c9b38629ea9314a08d3b1"/></dir><dir name="secure"><file name="failure.phtml" hash="d33ccb69a08a2195df3586bf36dc9d85"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="de_AT"><file name="Mage_Novalnet.csv" hash="38bdc4d98aad5d27ceac773d5fa6d6f7"/></dir><dir name="de_CH"><file name="Mage_Novalnet.csv" hash="38bdc4d98aad5d27ceac773d5fa6d6f7"/></dir><dir name="de_DE"><file name="Mage_Novalnet.csv" hash="38bdc4d98aad5d27ceac773d5fa6d6f7"/></dir><dir name="en_US"><file name="Mage_Novalnet.csv" hash="7608edbf9414eb688f345715f475700b"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="default"><dir name="images"><dir name="novalnet"><file name="acdc_info.png" hash="fa69e3f3098c4f85d9d3c796d82bdf0a"/><file name="AE_Logo.png" hash="ed3b558031a1f03e1bd536ecf1233e0e"/><file name="ELV_Logo.png" hash="b265493a083f03e4da7d24c23cc55b67"/><file name="MC_Logo.png" hash="cd17acdae3de28aeff7da7952d2ef802"/><file name="NN_Logo.png" hash="e17794ee0b984fd6e1ec2b884da1a29b"/><file name="NN_Logo_T.png" hash="4d442efcb94c9fee7749022478a9d1f3"/><file name="Sofort_Logo_t.jpg" hash="3b88302d88393b582c1cccd152e267bc"/><file name="VI_Logo.png" hash="5e963373aa1db58369730238cf311548"/></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir name="Mage"><dir name="Novalnet"><dir name="Block"><dir name="Cc"><file name="Form.php" hash="d85d4f5f3cfc19abee8a3b9388de7fe7"/><file name="Info.php" hash="c96a58aa8542b8cbe375650206b40cd8"/></dir><dir name="Elvaustria"><file name="Form.php" hash="deaa6cef24778a8267f269852d295ea8"/><file name="Info.php" hash="d3b662ae5a3b5c795ebb8a1b2e3ab62c"/></dir><dir name="Elvgerman"><file name="Form.php" hash="d50a54a153cb9f72f257ed217ea6f7ab"/><file name="Info.php" hash="4517cd593bfdb4e02a84cc11259ab3ee"/></dir><dir name="Instantbanktransfer"><file name="Failure.php" hash="eff4ad5092570e0a6aac5560aa1466a4"/><file name="Form.php" hash="479141cd4ebf61820c702e3032796c44"/><file name="Info.php" hash="9ba8ff30244f48409aadb4671b7dd02f"/><file name="Redirect.php" hash="a877cfb3bda97ce9014f0e9d5ca8e001"/></dir><dir name="Invoice"><file name="Form.php" hash="09416dc8b843b8edbec01a2a5ae3b96c"/><file name="Info.php" hash="5525c9ae3534663b5d5da0a326c9c2fa"/></dir><dir name="Phonepayment"><file name="Form.php" hash="f7cbfe3fe0cf97ae69108ad5d4e9cf82"/><file name="Info.php" hash="1d3542d6eba2396d2ac2908b3932a181"/></dir><dir name="Prepayment"><file name="Form.php" hash="2742a76acca7614d9dcfd0ec130c7334"/><file name="Info.php" hash="9cab5ed40e74dca7fdc76b819ee11de6"/></dir><dir name="Secure"><file name="Failure.php" hash="38cdb224914c9551cbdb0b884b808a33"/><file name="Redirect.php" hash="3d58b472c0a3c1391f8edbf5cfdd7bb9"/></dir></dir><dir name="controllers"><file name="InstantbanktransferController.php" hash="c9c98fff630a33c8abfb212ccc206b3e"/><file name="InstantbanktransferController_orig.php" hash="513e95d803149b253c41374d59ced219"/><file name="SecureController.php" hash="be31b2d2a8af3a0652092af0d73597b7"/></dir><dir name="etc"><file name="config.xml" hash="3885351b7c88a2ba997aa50fae6f2ea8"/><file name="system.xml" hash="2419b422f36f9107caefc87d4a7ebbf3"/></dir><dir name="Helper"><file name="Data.php" hash="5cd27f9fbb7e3b7083c3d80c8354a5d3"/></dir><dir name="Model"><file name="include_all.php" hash="bd2d91378b834650e3bff5afebd58236"/><file name="NovalnetCc.php" hash="5c1601f6f0d0e4f9f8ef6aa65cc62c55"/><file name="NovalnetElvaustria.php" hash="ecd318f49572acb92dc8ce8ce8c6d5b9"/><file name="NovalnetElvgerman.php" hash="65c4a700e176d9782c382e4fbe9b5640"/><file name="NovalnetInstantbanktransfer.php" hash="7cbbc5bb874713fbbd6da7e2f91b232f"/><file name="NovalnetInvoice.php" hash="7b4fc4bbd6e6372a6d33bfe0a2598303"/><file name="NovalnetPhonepayment.php" hash="df678a8fb2c52a1c30aae8fdcf0411c3"/><file name="NovalnetPrepayment.php" hash="82750d0ae7a55e5bfd2236181d35bc2f"/><file name="NovalnetSecure.php" hash="c632847a65c30471022ec96913f1370f"/><dir name="Mysql4"><file name="Setup.php" hash="bda93bd1825c67b2eac9943ec42076f1"/></dir><dir name="Novalnet"><file name="Request.php" hash="87fd92d8890377ab2e3fb1dc2c1790bf"/><file name="Result.php" hash="fa36462e819f3581e27d50b201d9fb99"/><dir name="Source"><file name="Cctype.php" hash="e886ba7736877e589abfd6f7343f98d4"/></dir></dir></dir><dir name="sql"><dir name="novalnet_setup"><file name="mysql4-install-1.0.0.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.0.3-1.1.0.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.0-1.1.1.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.1-1.1.2.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.2-1.1.3.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.3-1.1.4.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.4-1.1.5.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.5-1.1.6.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.7-1.1.8.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.8-1.1.9.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.1.9-1.2.0.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.0-1.2.1.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.1-1.2.2.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.2-1.2.3.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.3-1.2.4.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/><file name="mysql4-upgrade-1.2.4-1.2.5.php" hash="d15297ab95ca0b76038e32a4ad9fff79"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Mage_Novalnet.xml" hash="752f2f1df5ae673d9deafdaa6f021b32"/></dir></target></contents>
25
  <compatible/>
26
  <dependencies/>
27
  </package>