Posts by James Fox

    Was anyone else still getting a Deprecated: implode() message after installing v3.1.7?


    On line 352 of the PerchContent.class.php file I had to swap the parameters around from:


    PHP
    1. $sql .= ' AND ('.implode($where, ' OR ').') ';

    to

    PHP
    1. $sql .= ' AND ('.implode(' OR ', $where).') ';