Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dergel committed Sep 23, 2023
1 parent 63ab6d4 commit 7703997
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
// transaction test.
$testSQL = rex_sql::factory();
$testSQL->transactional(static function () {
rex_sql::factory()->setQuery('SELECT * rex_user LIMIT 1');
rex_sql::factory()->setQuery('SELECT * from rex_user LIMIT 1');
});
} catch (Exception $e) {
throw new rex_sql_exception('db does not support transactions', $e);
throw new rex_exception('db does not support transactions: ' . $e->getMessage(), $e);
}

// old plugin docs still exists ? -> delete
Expand Down

0 comments on commit 7703997

Please sign in to comment.