mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-25 18:59:12 +02:00
Merge pull request #65 from vsc55/#58
fix db_template, "db_update_v12" missing.
This commit is contained in:
commit
9eadf1dc5b
@ -1185,7 +1185,7 @@ if ( isset($_POST['op']) )
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
$sqlquery = "UPDATE " . DB_SAVEDREPORTS . " SET
|
$sqlquery = "UPDATE " . DB_SAVEDREPORTS . " SET
|
||||||
sourceid = " . $content['SourceID'] . ",
|
sourceid = '" . $content['SourceID'] . "',
|
||||||
customTitle = '" . $content['customTitle'] . "',
|
customTitle = '" . $content['customTitle'] . "',
|
||||||
customComment = '" . $content['customComment'] . "',
|
customComment = '" . $content['customComment'] . "',
|
||||||
filterString = '" . $content['filterString'] . "',
|
filterString = '" . $content['filterString'] . "',
|
||||||
|
@ -175,7 +175,7 @@ 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,
|
||||||
`sourceid` int(11) NOT NULL,
|
`sourceid` varchar(11) NOT NULL,
|
||||||
`customTitle` varchar(255) NOT NULL,
|
`customTitle` varchar(255) NOT NULL,
|
||||||
`customComment` text NOT NULL,
|
`customComment` text NOT NULL,
|
||||||
`filterString` text NOT NULL,
|
`filterString` text NOT NULL,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user