diff options
-rw-r--r-- | engine/lib/upgrades/2010100500.php | 9 | ||||
-rw-r--r-- | version.php | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/engine/lib/upgrades/2010100500.php b/engine/lib/upgrades/2010100500.php new file mode 100644 index 000000000..1f9587196 --- /dev/null +++ b/engine/lib/upgrades/2010100500.php @@ -0,0 +1,9 @@ +<?php +/** + * Upgrades the oAuth Library plugin name + */ + +if (is_plugin_enabled('oauth')) { + disable_plugin('oauth'); + enable_plugin('oauth_lib'); +} diff --git a/version.php b/version.php index a9aa992c6..85b5efb52 100644 --- a/version.php +++ b/version.php @@ -12,7 +12,7 @@ // YYYYMMDD = Elgg Date // XX = Interim incrementer -$version = 2010071002; +$version = 2010100500; // Human-friendly version name $release = '1.8-svn'; |