Skip to content

Commit

Permalink
issue #187: fix deprecated string usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriim committed Nov 18, 2024
1 parent 8458999 commit 1274e20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions locallib.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ function tool_crawler_sql_oversize_filter($tablealias = null) {
$tbl = '';
}

$where = "( ${tbl}filesize > ?
OR ( ${tbl}filesize IS NULL
AND ${tbl}lastcrawled IS NOT NULL
$where = "( {$tbl}filesize > ?
OR ( {$tbl}filesize IS NULL
AND {$tbl}lastcrawled IS NOT NULL
)
OR ${tbl}filesizestatus = ?
OR {$tbl}filesizestatus = ?
)";

$bigfilesize = get_config('tool_crawler', 'bigfilesize');
Expand Down

0 comments on commit 1274e20

Please sign in to comment.