Skip to content

Commit

Permalink
Fixed issue #15528: Internal server error when trying to view partial…
Browse files Browse the repository at this point in the history
… responses using Postgres
  • Loading branch information
c-schmitz committed Mar 11, 2020
1 parent 1ea679e commit 00c0549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/SavedControl.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public function search()
{
// @todo Please modify the following code to remove attributes that should not be searched.
$criteria = new CDbCriteria;
$criteria->compare('sid', $this->sid, true); //will not be searchable
$criteria->compare('sid', $this->sid, false); //will not be searchable
$criteria->compare('srid', $this->srid, true);
$criteria->compare('access_code', $this->access_code, true);

Expand Down

0 comments on commit 00c0549

Please sign in to comment.