Merge pull request #6484 from rabuzarus/20190121_-_fix_Contact_module_profile_searching

bugfix - contact module couldn't update a contact because it couldn't locate the selected profile
2022.09-rc
Michael Vogel 2019-01-21 21:46:48 +01:00 zatwierdzone przez GitHub
commit 4cbfa4aa71
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -198,7 +198,7 @@ class Contact extends BaseModule
$profile_id = intval(defaults($_POST, 'profile-assign', 0));
if ($profile_id) {
if (!DBA::exists('profile', ['id' => $profile_id, 'uid' => local_user(), 'deleted' => false])) {
if (!DBA::exists('profile', ['id' => $profile_id, 'uid' => local_user()])) {
notice(L10n::t('Could not locate selected profile.') . EOL);
return;
}