HomeHelpTrac

Ignore:
Timestamp:
04/06/09 04:21:27 (3 years ago)
Author:
Andrey Prikaznov
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/boonex/feedback/install/sql/install.sql

    r9968 r9972  
    9090 
    9191 
    92 SET @iCategoryId = (SELECT MAX(`kateg`) FROM `GlParams`) + 1; 
     92SET @iCategoryId = (SELECT MAX(`kateg`) FROM `sys_options`) + 1; 
    9393SET @iCategoryOrder = (SELECT MAX(`menu_order`) FROM `sys_options_cats`) + 1; 
    9494INSERT INTO `sys_options_cats` (`ID`, `name` , `menu_order` ) VALUES (@iCategoryId, 'Feedback', @iCategoryOrder); 
    9595 
    96 INSERT INTO `GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`) VALUES 
     96INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`) VALUES 
    9797('permalinks_module_feedback', 'on', 26, 'Enable friendly feedback permalink', 'checkbox', '', '', 0), 
    9898('feedback_autoapprove', 'on', @iCategoryId, 'Enable autoapprove for members feedback', 'checkbox', '', '', 0), 
Note: See TracChangeset for help on using the changeset viewer.