Fixed XXX genre search.

This commit is contained in:
DariusIII
2014-12-07 15:27:43 +01:00
parent 24c7b5e36b
commit facada6b2e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ class TmuxOutput extends Tmux
$buffer = '';
$state = ($this->runVar['settings']['is_running'] == 1) ? 'Running' : 'Disabled';
//$version = $this->_tvers . 'r' . $this->_vers;
$tversion = '0.5r0075';
$tversion = '0.5r0076';
$buffer .= sprintf($this->tmpMasks[2],
"Monitor $state v$tversion @ $this->_tvers [" . $this->_vers ."]: ",
+1 -1
View File
@@ -715,7 +715,7 @@ class XXX
if (!is_array($arr)) {
$res = $this->pdo->queryOneRow("SELECT ID FROM genres WHERE title = " . $this->pdo->escapeString($arr));
if ($res !== false) {
return $res["id"];
return $res["ID"];
}
}