Skip to content

Commit ef61c37

Browse files
dmitriimbrendanheywood
authored andcommitted
issue #187: fix deprecated string usage
1 parent 9be2b8c commit ef61c37

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

locallib.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,11 @@ function tool_crawler_sql_oversize_filter($tablealias = null) {
178178
$tbl = '';
179179
}
180180

181-
$where = "( ${tbl}filesize > ?
182-
OR ( ${tbl}filesize IS NULL
183-
AND ${tbl}lastcrawled IS NOT NULL
181+
$where = "( {$tbl}filesize > ?
182+
OR ( {$tbl}filesize IS NULL
183+
AND {$tbl}lastcrawled IS NOT NULL
184184
)
185-
OR ${tbl}filesizestatus = ?
185+
OR {$tbl}filesizestatus = ?
186186
)";
187187

188188
$bigfilesize = get_config('tool_crawler', 'bigfilesize');

0 commit comments

Comments
 (0)