This commit is contained in:
kaetemi 2014-09-11 10:01:05 +02:00
commit df9864cb30
8 changed files with 7 additions and 8 deletions

View file

@ -1,3 +1,2 @@
INSERT INTO `plugins` (`FileName`, `Name`, `Type`, `Owner`, `Permission`, `Status`, `Weight`, `Info`) VALUES
('Domain_Management', 'Domain_Management', 'Manual', '', 'admin', 1, 0, '{"PluginName":"Domain Management","Description":"Plug-in for Domain Management.","Version":"1.0.0","TemplatePath":"..\\/..\\/..\\/private_php\\/ams\\/plugins\\/Domain_Management\\/templates\\/index.tpl","Type":"Manual","":null}');

View file

@ -1,3 +1,2 @@
ALTER TABLE `plugins` ADD UNIQUE(`Name`);
UPDATE `plugins` SET `Info` = '{"PluginName":"Achievements","Description":"Returns the achievements of a user with respect to the character","Version":"1.0.0","TemplatePath":"..\\/..\\/..\\/private_php\\/ams\\/plugins\\/Achievements\\/templates\\/index.tpl","Type":"Manual","":null}' WHERE `Name` = 'Achievements';

View file

@ -0,0 +1 @@
ALTER TABLE `ticket_attachments` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

View file

@ -0,0 +1 @@
UPDATE `neltool_notes` SET `note_user_id` = '1' WHERE `note_user_id` =27;

View file

@ -11,8 +11,8 @@
define('NELTOOL_DBNAME', $cfg['db']['tool']['name']);
// site paths definitions
define('NELTOOL_SITEBASE', $_SERVER['PHP_SELF']);
define('NELTOOL_SYSTEMBASE', dirname( dirname(__FILE__) ) . '/admin/');
define('NELTOOL_SITEBASE', dirname($_SERVER['PHP_SELF']) .'/');
define('NELTOOL_SYSTEMBASE', dirname(__FILE__) .'/');
define('NELTOOL_LOGBASE', NELTOOL_SYSTEMBASE .'/logs/');
define('NELTOOL_IMGBASE', NELTOOL_SYSTEMBASE .'/imgs/');

View file

@ -1,4 +1,3 @@
{include file="page_header.tpl"}
{literal}

View file

@ -2,11 +2,11 @@
// Service
$db_nel = 3;
$db_nel_tool = 1;
$db_nel_tool = 2;
// Support
$db_nel_ams = 1;
$db_nel_ams_lib = 4;
$db_nel_ams_lib = 5;
// Domain
$db_ring_domain = 1;

View file

@ -1,6 +1,6 @@
<?php
// Increment whenever a web upgrade is required.
$NEL_SETUP_VERSION = 5;
$NEL_SETUP_VERSION = 6;
/* end of file */