Skip to content

Commit

Permalink
Merge branch 'bugfix/FREEPBX-11726' of ssh://git.freepbx.org/freepbx/…
Browse files Browse the repository at this point in the history
…superfecta into release/13.0
  • Loading branch information
tm1000 committed Mar 16, 2016
2 parents fbea72c + a91c0da commit d6b3f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Superfecta.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public function ajaxHandler() {
}
break;
case "update_sources":
$sources = implode(",", $_REQUEST['data']);
$sources = isset($_REQUEST['data'])?implode(",", $_REQUEST['data']):'';
$sql = "REPLACE INTO superfectaconfig (value, source, field) VALUES(?, ?, 'sources')";
$sth = $this->db->prepare($sql);
$sth->execute(array($sources, 'base_'.$_REQUEST['scheme']));
Expand Down

0 comments on commit d6b3f05

Please sign in to comment.