1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-11 09:14:58 +02:00

Accidentally left a Tracy bd() call in there, this commit removes it

This commit is contained in:
Ryan Cramer
2025-05-02 15:13:30 -04:00
parent fb26ec9d64
commit 77fbde3409

View File

@@ -2246,7 +2246,6 @@ class PageFinder extends Wire {
}
$query->leftjoin("$table AS $tableAlias ON $tableAlias.pages_id=pages.id");
bd("leftjoin $table as $tableAlias on $tableAlias.pages_id=pages.id");
$where .= strlen($where) ? " $whereType ($sql)" : "($sql)";
return true;