]> git.mxchange.org Git - friendica.git/blobdiff - include/remove_contact.php
Move Probe to src
[friendica.git] / include / remove_contact.php
index bb110a284b9283123ec0c2f78c090aff87d8a673..a3938ad8ecbe390a7d52b612efea226963607d0a 100644 (file)
@@ -4,7 +4,7 @@
  * @brief Removes orphaned data from deleted contacts
  */
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 function remove_contact_run($argv, $argc) {
        if ($argc != 2) {
@@ -22,4 +22,3 @@ function remove_contact_run($argv, $argc) {
        // Now we delete all the depending table entries
        dba::delete('contact', array('id' => $id));
 }
-?>