GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Pull Request — master (#28)
by
unknown
02:31
created
carddav2fb.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -603,7 +603,7 @@  discard block
 block discarded – undo
603 603
             print "  Added photo: " . basename($photo_file) . PHP_EOL;
604 604
           }
605 605
           else
606
-           print "  WARNING: Only jpg contact photos are currently supported." . PHP_EOL;
606
+            print "  WARNING: Only jpg contact photos are currently supported." . PHP_EOL;
607 607
         }
608 608
         elseif(substr($entry['photo_data'][0], 0, 4) == 'http')
609 609
         {
@@ -668,19 +668,19 @@  discard block
 block discarded – undo
668 668
         fclose($output);
669 669
         print " Saved to file " . $this->config['output_file'] . PHP_EOL;
670 670
       }
671
-	  if (array_key_exists('output_and_upload', $this->config) and $this->config['output_and_upload'])
672
-	  {
673
-	  	$newphonebhash = md5(preg_replace("/<mod_time>(\\d{10})/","",file_get_contents($this->config['output_file'],'r'),-1,$debugnewtsreplace));
674
-	  	print " INFO: Compare old and new phonebook file versions." . PHP_EOL . " INFO: old version: " . $oldphonebhash . PHP_EOL . " INFO: new version: " . $newphonebhash . PHP_EOL;
675
-	  	if($oldphonebhash === $newphonebhash)
676
-      	{
677
-      	print " INFO: Same versions ==> No changes in phonebook or images" . PHP_EOL . " EXIT: No need to upload phonebook to the FRITZ!Box.". PHP_EOL;
678
-      	return 0;
679
-      	}
680
-      	else
681
-      	print " INFO: Different versions ==> Changes in phonebook." . PHP_EOL . " INFO: Changes dedected! Continue with upload." . PHP_EOL;
671
+    if (array_key_exists('output_and_upload', $this->config) and $this->config['output_and_upload'])
672
+    {
673
+      $newphonebhash = md5(preg_replace("/<mod_time>(\\d{10})/","",file_get_contents($this->config['output_file'],'r'),-1,$debugnewtsreplace));
674
+      print " INFO: Compare old and new phonebook file versions." . PHP_EOL . " INFO: old version: " . $oldphonebhash . PHP_EOL . " INFO: new version: " . $newphonebhash . PHP_EOL;
675
+      if($oldphonebhash === $newphonebhash)
676
+        {
677
+        print " INFO: Same versions ==> No changes in phonebook or images" . PHP_EOL . " EXIT: No need to upload phonebook to the FRITZ!Box.". PHP_EOL;
678
+        return 0;
679
+        }
680
+        else
681
+        print " INFO: Different versions ==> Changes in phonebook." . PHP_EOL . " INFO: Changes dedected! Continue with upload." . PHP_EOL;
682 682
       }
683
-	  else
683
+    else
684 684
       return 0;  
685 685
     }
686 686
     // now we upload the photo jpgs first being stored in the
@@ -811,10 +811,10 @@  discard block
 block discarded – undo
811 811
       );
812 812
 
813 813
       $filefileds = array('PhonebookImportFile' => array(
814
-       'type' => 'text/xml',
815
-       'filename' => 'updatepb.xml',
816
-       'content' => $this->fbxml,
817
-       )
814
+        'type' => 'text/xml',
815
+        'filename' => 'updatepb.xml',
816
+        'content' => $this->fbxml,
817
+        )
818 818
       );
819 819
 
820 820
       $raw_result = $fritz->doPostFile($formfields, $filefileds); // send the command
Please login to merge, or discard this patch.