Contacts: Move debug logging of $_POST to after access checks
This commit is contained in:
parent
6eb1427ac0
commit
39f342d595
1 changed files with 4 additions and 3 deletions
|
@ -30,15 +30,16 @@ function bailOut($msg) {
|
|||
function debug($msg) {
|
||||
OC_Log::write('contacts','ajax/addcontact.php: '.$msg, OC_Log::DEBUG);
|
||||
}
|
||||
foreach ($_POST as $key=>$element) {
|
||||
debug('_POST: '.$key.'=>'.$element);
|
||||
}
|
||||
|
||||
// Check if we are a user
|
||||
OC_JSON::checkLoggedIn();
|
||||
OC_JSON::checkAppEnabled('contacts');
|
||||
$l=new OC_L10N('contacts');
|
||||
|
||||
foreach ($_POST as $key=>$element) {
|
||||
debug('_POST: '.$key.'=>'.$element);
|
||||
}
|
||||
|
||||
$aid = $_POST['aid'];
|
||||
OC_Contacts_App::getAddressbook( $aid ); // is owner access check
|
||||
|
||||
|
|
Loading…
Reference in a new issue