Merge pull request #65 from vsc55/#58

fix db_template, "db_update_v12" missing.
This commit is contained in:
Andre Lorbach 2020-07-08 10:59:50 +02:00 committed by GitHub
commit 9eadf1dc5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1185,7 +1185,7 @@ if ( isset($_POST['op']) )
else
{
$sqlquery = "UPDATE " . DB_SAVEDREPORTS . " SET
sourceid = " . $content['SourceID'] . ",
sourceid = '" . $content['SourceID'] . "',
customTitle = '" . $content['customTitle'] . "',
customComment = '" . $content['customComment'] . "',
filterString = '" . $content['filterString'] . "',

View File

@ -175,7 +175,7 @@ DROP TABLE IF EXISTS `logcon_savedreports`;
CREATE TABLE `logcon_savedreports` (
`ID` int(11) NOT NULL auto_increment,
`reportid` varchar(255) NOT NULL,
`sourceid` int(11) NOT NULL,
`sourceid` varchar(11) NOT NULL,
`customTitle` varchar(255) NOT NULL,
`customComment` text NOT NULL,
`filterString` text NOT NULL,