| Versionen | |
|---|---|
| drupal7 | public DeleteQuery_sqlite::execute() |
includes/
<?php
public function execute() {
if (!count($this->condition)) {
$total_rows = $this->connection->query('SELECT COUNT(*) FROM {' . $this->connection->escapeTable($this->table) . '}')->fetchField();
parent::execute();
return $total_rows;
}
else {
return parent::execute();
}
}
?>
Kommentare
Kommentar hinzufügen