forked from GNUsocial/gnu-social
		
	better debug messages
darcs-hash:20080530184712-84dde-bcea123d79aff11585eacee8b85932543acfe072.gz
This commit is contained in:
		@@ -78,7 +78,7 @@ class RemotesubscribeAction extends Action {
 | 
				
			|||||||
		$fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
 | 
							$fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
 | 
				
			||||||
		$yadis = Auth_Yadis_Yadis::discover($profile, $fetcher);
 | 
							$yadis = Auth_Yadis_Yadis::discover($profile, $fetcher);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		common_debug('remotesubscribe.php: XRDS discovery result: "'.print_r($yadis, TRUE) .'"');
 | 
							common_debug('remotesubscribe.php: XRDS discovery failure? "'.$yadis->failed.'"');
 | 
				
			||||||
					 
 | 
										 
 | 
				
			||||||
		if (!$yadis || $yadis->failed) {
 | 
							if (!$yadis || $yadis->failed) {
 | 
				
			||||||
			$this->show_form(_t('Not a valid profile URL (no YADIS document).'));
 | 
								$this->show_form(_t('Not a valid profile URL (no YADIS document).'));
 | 
				
			||||||
@@ -121,7 +121,10 @@ class RemotesubscribeAction extends Action {
 | 
				
			|||||||
			return NULL;
 | 
								return NULL;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		
 | 
							
 | 
				
			||||||
 | 
							common_debug('remotesubscribe.php: XRDS service count: '.count($services));
 | 
				
			||||||
 | 
							
 | 
				
			||||||
		foreach ($services as $service) {
 | 
							foreach ($services as $service) {
 | 
				
			||||||
 | 
								common_debug('remotesubscribe.php: XRDS service "'.print_r($service,TRUE).'"');
 | 
				
			||||||
			$types = $service->matchTypes($endpoints);
 | 
								$types = $service->matchTypes($endpoints);
 | 
				
			||||||
			foreach ($types as $type) {
 | 
								foreach ($types as $type) {
 | 
				
			||||||
				# We take the first one, since it's the highest priority
 | 
									# We take the first one, since it's the highest priority
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user