Fix variable name typo in ContactSelector::profileAssign

This commit is contained in:
Hypolite Petovan 2018-04-06 21:54:53 -04:00
parent 7413dc62f0
commit 37505f8f28
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class ContactSelector
$o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" >\r\n";
$s = dba::select('profile', ['id', 'profile-name', 'is-default'], ['uid' => $$_SESSION['uid']]);
$s = dba::select('profile', ['id', 'profile-name', 'is-default'], ['uid' => $_SESSION['uid']]);
$r = dba::inArray($s);
if (DBM::is_result($r)) {