bugfix Contact.php - there is no column 'deleted' in the 'profile' table

This commit is contained in:
rabuzarus 2019-01-21 21:13:13 +01:00
parent 38b14d90a8
commit eabe192efc
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ class Contact extends BaseModule
$profile_id = intval(defaults($_POST, 'profile-assign', 0)); $profile_id = intval(defaults($_POST, 'profile-assign', 0));
if ($profile_id) { 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); notice(L10n::t('Could not locate selected profile.') . EOL);
return; return;
} }