diff --git a/Makefile b/Makefile
index f1ea1e1ef76d7044dd46e5192f8187e155e06159..917164c5bbed12ef2abccb8ae3a79c63610709bf 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 BASE=eurecap
 PLUGINTYPE=vmextended
-VERSION=0.7
+VERSION=0.8
 
 PLUGINFILES=$(BASE).php $(BASE).script.php $(BASE).xml index.html 
 # $(BASE)/
diff --git a/controllers/eurecap.php b/controllers/eurecap.php
index 8e372337d076b96fc074ac65370a100ff0d75e55..74d47d1a325839db1991ad1cbeee7a7ae0f7776a 100644
--- a/controllers/eurecap.php
+++ b/controllers/eurecap.php
@@ -57,7 +57,7 @@ class VirtuemartControllerEuRecap extends VmController {
 		$this->display();
 	}
 
-	function display($layout='') {
+	function display($cachable = false, $urlparams = false) {
 		if (vRequest::getVar('format')=='raw') {
 			// Raw forman means "Export"!!!
 			// Ideally, we would use an export task, but unfortunately
@@ -78,7 +78,7 @@ class VirtuemartControllerEuRecap extends VmController {
 			$view->setLayout($layout);
 		}
 
-		return parent::display($layout);
+		return parent::display($cachable, $urlparams);
 	}
 
 	/**
diff --git a/eurecap.xml b/eurecap.xml
index 4ea691ad392e763edcaadd0ed7c2d1d4145bb1ea..1a8552aafe414aed0c1cba9269572203126a1aeb 100644
--- a/eurecap.xml
+++ b/eurecap.xml
@@ -7,7 +7,7 @@
     <authorUrl>http://www.open-tools.net/</authorUrl>
     <copyright>Copyright (C) 2015 Reinhold Kainhofer. All rights reserved.</copyright>
     <license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3</license>
-    <version>0.7</version>
+    <version>0.8</version>
     <releaseDate>2016-01-01</releaseDate>
     <releaseType>Update</releaseType>
     <downloadUrl>http://www.open-tools.net</downloadUrl>
diff --git a/releases/plg_vmextended_eurecap_v0.8.zip b/releases/plg_vmextended_eurecap_v0.8.zip
new file mode 100644
index 0000000000000000000000000000000000000000..fcd3c639317a3a4a0d31248072ead5a1633bdcc3
Binary files /dev/null and b/releases/plg_vmextended_eurecap_v0.8.zip differ