diff options
Diffstat (limited to 'engine/lib/upgrades')
-rw-r--r-- | engine/lib/upgrades/2010100500.php | 9 |
1 files changed, 9 insertions, 0 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'); +} |