be more efficient
This commit is contained in:
parent
f4eed668e7
commit
3028c22c20
1 changed files with 2 additions and 2 deletions
|
@ -289,11 +289,11 @@ class Database extends AbstractData
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$row = $this->_select(
|
$row = $this->_select(
|
||||||
'SELECT * FROM "' . $this->_sanitizeIdentifier('paste') .
|
'SELECT "dataid" FROM "' . $this->_sanitizeIdentifier('paste') .
|
||||||
'" WHERE "dataid" = ?', array($pasteid), true
|
'" WHERE "dataid" = ?', array($pasteid), true
|
||||||
);
|
);
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
$row = false;
|
return false;
|
||||||
}
|
}
|
||||||
return (bool) $row;
|
return (bool) $row;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue