From d5ce15533593d20f49e3fbf4893d8f6510ecc3aa Mon Sep 17 00:00:00 2001 From: Alexis Wilke Date: Sat, 15 May 2010 10:43:12 +0000 Subject: [PATCH] Small fix for I changed (fixed) the name of a variable. --- simplemenu.install | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/simplemenu.install b/simplemenu.install index a23b0bc3..7b2c41cc 100644 --- a/simplemenu.install +++ b/simplemenu.install @@ -20,4 +20,14 @@ function simplemenu_update_6001() { return array(); } +/** + * Implementation of hook_update_N(). + */ +function simplemenu_update_6002() { + // fix variable name + variable_set('simplemenu_detect_popup', variable_get('simplemenu_detect_popop', 1)); + variable_del('simplemenu_detect_popop'); + return array(); +} + // vim: ts=2 sw=2 et syntax=php