Changeset 1261 in ExiteCMS


Ignore:
Timestamp:
02/11/08 20:41:46 (4 years ago)
Author:
hverton
Message:

added a wiki_forum_links config value, to indicate if wiki BBcode's must be added to forum posts automatically

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/common/wiki/php-files/modules/wiki/module_installer.php

    r1250 r1261  
    2020$mod_title = "Wikka Wiki";                              // title or name of this module 
    2121$mod_description = "ExiteCMS embedded implementation of Wikka Wakka Wiki v1.1.6.3"; // short description of it's purpose 
    22 $mod_version = "1.1.0";                                 // module version number 
     22$mod_version = "1.1.1";                                 // module version number 
    2323$mod_developer = "WanWizard";                           // author's name 
    2424$mod_email = "wanwizard@gmail.com"; 
     
    266266$mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'wiki_default_comment_acl'"); 
    267267$mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'wiki_admin_group'"); 
     268$mod_uninstall_cmds[] = array('type' => 'db', 'value' => "DELETE FROM ##PREFIX##configuration WHERE cfg_name = 'wiki_forum_links'"); 
    268269 
    269270// delete the user groups 
     
    334335            $result = dbquery("INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('wiki_admin_group', 'G103')"); 
    335336        } 
     337        $result = dbquery("INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('wiki_forum_links', '0')"); 
    336338    } 
    337339} 
     
    408410 
    409411            case "1.1.0": 
     412                $result = dbquery("INSERT INTO ".$db_prefix."configuration( cfg_name, cfg_value ) VALUES ('wiki_forum_links', '0')"); 
     413 
     414            case "1.1.1": 
    410415 
    411416            default: 
Note: See TracChangeset for help on using the changeset viewer.