Merge pull request #7 from chrisacameron/master

A db fix & couple of string additions
This commit is contained in:
alorbach 2015-01-02 16:36:05 +01:00
commit 7959555b46
3 changed files with 7 additions and 3 deletions

View File

@ -98,7 +98,7 @@ CREATE TABLE IF NOT EXISTS `logcon_users` (
`password` varchar(32) NOT NULL,
`is_admin` 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`)
) 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`
--
DROP TABLE IF EXISTS `logcon_savedreports`;
CREATE TABLE `logcon_savedreports` (
`ID` int(11) NOT NULL auto_increment,
`reportid` varchar(255) NOT NULL,

View File

@ -229,6 +229,7 @@ $content['LN_DBMP_NAME'] = "Database Mappingname";
$content['LN_DBMP_DBMAPPINGS'] = "Database Mappings";
$content['LN_DBMP_ADD'] = "Add new 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_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!";

View File

@ -232,6 +232,7 @@ $content['LN_DBMP_NAME'] = "Database Mappingname";
$content['LN_DBMP_DBMAPPINGS'] = "Database Mappings";
$content['LN_DBMP_ADD'] = "Add new 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_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!";