Skip to content
Snippets Groups Projects
Commit a09383ea authored by Andreas Gohr's avatar Andreas Gohr
Browse files

avoid PHP notice in ACL ajax backend FS#2384

parent 37c23632
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
*/
//fix for Opera XMLHttpRequests
if(!count($_POST) && $HTTP_RAW_POST_DATA){
if(!count($_POST) && !empty($HTTP_RAW_POST_DATA)){
parse_str($HTTP_RAW_POST_DATA, $_POST);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment