mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 03:09:21 +02:00
Merge pull request #7 from chrisacameron/master
A db fix & couple of string additions
This commit is contained in:
commit
7959555b46
@ -98,7 +98,7 @@ CREATE TABLE IF NOT EXISTS `logcon_users` (
|
|||||||
`password` varchar(32) NOT NULL,
|
`password` varchar(32) NOT NULL,
|
||||||
`is_admin` tinyint(1) NOT NULL default '0',
|
`is_admin` tinyint(1) NOT NULL default '0',
|
||||||
`is_readonly` tinyint(1) NOT NULL DEFAULT '0',
|
`is_readonly` tinyint(1) NOT NULL DEFAULT '0',
|
||||||
`last_login` int(4) NOT NULL,
|
`last_login` int(4) NOT NULL DEFAULT '0',
|
||||||
PRIMARY KEY (`ID`)
|
PRIMARY KEY (`ID`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Table for the phplogcon users' AUTO_INCREMENT=1 ;
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Table for the phplogcon users' AUTO_INCREMENT=1 ;
|
||||||
|
|
||||||
@ -170,6 +170,8 @@ CREATE TABLE `logcon_dbmappings` (
|
|||||||
--
|
--
|
||||||
-- Table structure for table `logcon_savedreports`
|
-- Table structure for table `logcon_savedreports`
|
||||||
--
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `logcon_savedreports`;
|
||||||
CREATE TABLE `logcon_savedreports` (
|
CREATE TABLE `logcon_savedreports` (
|
||||||
`ID` int(11) NOT NULL auto_increment,
|
`ID` int(11) NOT NULL auto_increment,
|
||||||
`reportid` varchar(255) NOT NULL,
|
`reportid` varchar(255) NOT NULL,
|
||||||
|
@ -229,6 +229,7 @@ $content['LN_DBMP_NAME'] = "Database Mappingname";
|
|||||||
$content['LN_DBMP_DBMAPPINGS'] = "Database Mappings";
|
$content['LN_DBMP_DBMAPPINGS'] = "Database Mappings";
|
||||||
$content['LN_DBMP_ADD'] = "Add new Database Mapping";
|
$content['LN_DBMP_ADD'] = "Add new Database Mapping";
|
||||||
$content['LN_DBMP_EDIT'] = "Edit Database Mapping";
|
$content['LN_DBMP_EDIT'] = "Edit Database Mapping";
|
||||||
|
$content['LN_DBMP_DELETE'] = "Delete Database Mapping";
|
||||||
$content['LN_DBMP_ERROR_IDNOTFOUND'] = "A Database Mapping with ID '%1' could not be found.";
|
$content['LN_DBMP_ERROR_IDNOTFOUND'] = "A Database Mapping with ID '%1' could not be found.";
|
||||||
$content['LN_DBMP_ERROR_INVALIDID'] = "The Database Mapping with ID '%1' is not a valid Database Mapping.";
|
$content['LN_DBMP_ERROR_INVALIDID'] = "The Database Mapping with ID '%1' is not a valid Database Mapping.";
|
||||||
$content['LN_DBMP_WARNDELETEMAPPING'] = "Are you sure that you want to delete the Database Mapping '%1'? This cannot be undone!";
|
$content['LN_DBMP_WARNDELETEMAPPING'] = "Are you sure that you want to delete the Database Mapping '%1'? This cannot be undone!";
|
||||||
|
@ -232,6 +232,7 @@ $content['LN_DBMP_NAME'] = "Database Mappingname";
|
|||||||
$content['LN_DBMP_DBMAPPINGS'] = "Database Mappings";
|
$content['LN_DBMP_DBMAPPINGS'] = "Database Mappings";
|
||||||
$content['LN_DBMP_ADD'] = "Add new Database Mapping";
|
$content['LN_DBMP_ADD'] = "Add new Database Mapping";
|
||||||
$content['LN_DBMP_EDIT'] = "Edit Database Mapping";
|
$content['LN_DBMP_EDIT'] = "Edit Database Mapping";
|
||||||
|
$content['LN_DBMP_DELETE'] = "Delete Database Mapping";
|
||||||
$content['LN_DBMP_ERROR_IDNOTFOUND'] = "A Database Mapping with ID '%1' could not be found.";
|
$content['LN_DBMP_ERROR_IDNOTFOUND'] = "A Database Mapping with ID '%1' could not be found.";
|
||||||
$content['LN_DBMP_ERROR_INVALIDID'] = "The Database Mapping with ID '%1' is not a valid Database Mapping.";
|
$content['LN_DBMP_ERROR_INVALIDID'] = "The Database Mapping with ID '%1' is not a valid Database Mapping.";
|
||||||
$content['LN_DBMP_WARNDELETEMAPPING'] = "Are you sure that you want to delete the Database Mapping '%1'? This cannot be undone!";
|
$content['LN_DBMP_WARNDELETEMAPPING'] = "Are you sure that you want to delete the Database Mapping '%1'? This cannot be undone!";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user