be more efficient

This commit is contained in:
El RIDO
2022-11-06 07:40:39 +01:00
parent f4eed668e7
commit 3028c22c20

View File

@@ -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;
} }