More logging in case of errors + logged network type + added TODO (for ugly E_NOTICE).
authorRoland Haeder <roland@mxchange.org>
Tue, 1 Mar 2016 13:42:55 +0000 (14:42 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 1 Mar 2016 13:42:55 +0000 (14:42 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
mod/dfrn_request.php

index 2741ad5..82886a6 100644 (file)
@@ -42,8 +42,10 @@ function dfrn_request_init(&$a) {
 if(! function_exists('dfrn_request_post')) {
 function dfrn_request_post(&$a) {
 
-       if(($a->argc != 2) || (! count($a->profile)))
+       if(($a->argc != 2) || (! count($a->profile))) {
+               logger('Wrong count of argc or profiles: argc=' . $a->argc . ',profile()=' . count($a->profile));
                return;
+       }
 
 
        if(x($_POST, 'cancel')) {
@@ -461,7 +463,7 @@ function dfrn_request_post(&$a) {
                                $network = NETWORK_DFRN;
                }
 
-               logger('dfrn_request: url: ' . $url);
+               logger('dfrn_request: url: ' . $url . ',network=' . $network, LOGGER_DEBUG);
 
                if($network === NETWORK_DFRN) {
                        $ret = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' AND `self` = 0 LIMIT 1",
@@ -825,6 +827,7 @@ function dfrn_request_content(&$a) {
                else
                        $tpl = get_markup_template('auto_request.tpl');
 
+               // TODO This .= triggers an E_NOTICE, really needed?
                $page_desc .= t("Please enter your 'Identity Address' from one of the following supported communications networks:");
 
                // see if we are allowed to have NETWORK_MAIL2 contacts
@@ -850,6 +853,7 @@ function dfrn_request_content(&$a) {
                        get_server()
                );
 
+               // TODO This .= triggers an E_NOTICE, really needed?
                $o .= replace_macros($tpl,array(
                        '$header' => t('Friend/Connection Request'),
                        '$desc' => t('Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca'),