diff options
author | Kevin Chabowski <kevin@kch42.de> | 2011-12-27 22:19:57 +0100 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2011-12-27 22:19:57 +0100 |
commit | a1e034a621780fee9398663e1966b18127dfe9fd (patch) | |
tree | a476ce733e39fd4b0026b12b926661fd343641d1 /ratatoeskr/sys/plugin_api.php | |
parent | edad8581bb6ec2cb0e198f1cc5e415ce526147b7 (diff) | |
download | ratatoeskr-cms-a1e034a621780fee9398663e1966b18127dfe9fd.tar.gz ratatoeskr-cms-a1e034a621780fee9398663e1966b18127dfe9fd.tar.bz2 ratatoeskr-cms-a1e034a621780fee9398663e1966b18127dfe9fd.zip |
Finished optimizing for now. Removed debug tools and new API.
The API version was increased because during this optimization the db
models became incompatible to the old ones.
Diffstat (limited to 'ratatoeskr/sys/plugin_api.php')
-rw-r--r-- | ratatoeskr/sys/plugin_api.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ratatoeskr/sys/plugin_api.php b/ratatoeskr/sys/plugin_api.php index a6f14d4..e8f1a2c 100644 --- a/ratatoeskr/sys/plugin_api.php +++ b/ratatoeskr/sys/plugin_api.php @@ -15,15 +15,15 @@ require_once(dirname(__FILE__) . "/../frontend.php"); /* * Constant: APIVERSION - * The current API version (2). + * The current API version (3). */ -define("APIVERSION", 2); +define("APIVERSION", 3); /* * Array: $api_compat * Array of API versions, this version is compatible to (including itself). */ -$api_compat = array(1, 2); +$api_compat = array(3); $url_handlers = array(); /* |