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/wall/install/sql/install.sql

    r9969 r9972  
    8383 
    8484 
    85 SET @iCategoryId = (SELECT `kateg` FROM `GlParams` ORDER BY `kateg` DESC LIMIT 1) + 1; 
     85SET @iCategoryId = (SELECT `kateg` FROM `sys_options` ORDER BY `kateg` DESC LIMIT 1) + 1; 
    8686SET @iCategoryOrder = (SELECT `menu_order` FROM `sys_options_cats` ORDER BY `menu_order` DESC LIMIT 1); 
    8787INSERT INTO `sys_options_cats` (`ID`, `name` , `menu_order` ) VALUES (@iCategoryId, 'Wall', @iCategoryOrder); 
    8888 
    89 INSERT INTO `GlParams` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`) VALUES 
     89INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`) VALUES 
    9090('permalinks_module_wall', 'on', 26, 'Enable friendly wall permalink', 'checkbox', '', '', 0), 
    9191('wall_enable_guest_comments', '', @iCategoryId, 'Allow non-members to post in wall', 'checkbox', '', '', 0), 
Note: See TracChangeset for help on using the changeset viewer.