Skip to content
Snippets Groups Projects
Commit 3a5c4830 authored by Reinhold Kainhofer's avatar Reinhold Kainhofer
Browse files

V0.5: Make it work with the latest version of VM

VM now uses the return value of the extended plugin trigger. true is understood as: The plugin handled the controller itself, so virtuemart.php does not instantiate the controller and call the corresponding task => We actually want to return false, so VM calls the controller
parent f4628973
No related branches found
No related tags found
No related merge requests found
BASE=eurecap
PLUGINTYPE=vmextended
VERSION=0.4
VERSION=0.5
PLUGINFILES=$(BASE).php $(BASE).script.php $(BASE).xml index.html
# $(BASE)/
......
......@@ -52,7 +52,7 @@ class plgVmExtendedEuRecap extends vmExtendedPlugin {
require_once($this->_path.DS.'models'.DS.'eurecap.php');
require_once($this->_path.DS.'models'.DS.'eurecap_config.php');
require_once($this->_path.DS.'controllers'.DS.'eurecap.php');
return true;
return false;
}
}
......
......@@ -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.4</version>
<version>0.5</version>
<releaseDate>2016-01-01</releaseDate>
<releaseType>Update</releaseType>
<downloadUrl>http://www.open-tools.net</downloadUrl>
......
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment