Roger López 16 gadi atpakaļ
vecāks
revīzija
a42aa98302
1 mainītis faili ar 14 papildinājumiem un 0 dzēšanām
  1. 14 0
      simplemenu.install

+ 14 - 0
simplemenu.install

@@ -0,0 +1,14 @@
+<?php
+// $Id$
+
+/**
+ * Implementation of hook_update_N().
+ */
+function simplemenu_update_6001() {
+  // if navigation menu was used in Drupal 5 use the same in Drupal 6.
+  // otherwise, we can't do anything.
+  if(variable_get('simplemenu_menu', 1) == 1) {
+    variable_set('simplemenu_menu', 'navigation:0');
+  }
+  return array();
+}