PHP notice fixed when $join undefined

pull/44/head
Harshvardhan Malpani 2019-06-03 09:31:47 +05:30 committed by GitHub
parent 8eac2653c5
commit 8a5957b62e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ class DB {
$query = 'SELECT * FROM '.$table; $query = 'SELECT * FROM '.$table;
if($join) { if(isset($join) && $join) {
$query .= ' ' . $join . ' '; $query .= ' ' . $join . ' ';
} }