From: Antonio Ospite <ospite@studenti.unina.it>
Date: Sun, 11 Aug 2013 23:06:23 +0000 (+0200)
Subject: Remove double semicolon in Tweeper::get_info()
X-Git-Tag: v0.1~12^2~2
X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/f10331c2001ba9ac72b8ccede428a98dcd9282e8

Remove double semicolon in Tweeper::get_info()
---

diff --git a/tweeper.php b/tweeper.php
index ef55022..94d91c3 100644
--- a/tweeper.php
+++ b/tweeper.php
@@ -77,7 +77,7 @@ class Tweeper {
         CURLOPT_USERAGENT => Tweeper::$USER_AGENT,
     ));
     curl_exec($ch);
-    $url_info = curl_getinfo($ch);;
+    $url_info = curl_getinfo($ch);
     curl_close($ch);
 
     return $url_info;