]> git.mxchange.org Git - friendica-addons.git/blobdiff - ijpost/ijpost.php
Move Temporal::convert() to DateTimeFormat::convert()
[friendica-addons.git] / ijpost / ijpost.php
index fe0722532ccb6c54cd1176ca2fe0f1484b63559f..ffafa5ee919e5628ca44d47c9b0a8f6d2c4f2a3a 100644 (file)
@@ -7,10 +7,12 @@
  * Author: Michael Johnston
  * Author: Cat Gray <https://free-haven.org/profile/catness>
  */
+
 use Friendica\Core\Addon;
 use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
 use Friendica\Util\Network;
+use Friendica\Util\Temporal;
 
 function ijpost_install() {
     Addon::registerHook('post_local',           'addon/ijpost/ijpost.php', 'ijpost_post_local');
@@ -184,7 +186,7 @@ function ijpost_send(&$a,&$b) {
                $post = xmlify($post);
                $tags = ijpost_get_tags($b['tag']);
 
-               $date = datetime_convert('UTC',$tz,$b['created'],'Y-m-d H:i:s');
+               $date = DateTimeFormat::convert($b['created'], $tz);
                $year = intval(substr($date,0,4));
                $mon  = intval(substr($date,5,2));
                $day  = intval(substr($date,8,2));
@@ -221,7 +223,7 @@ EOT;
                logger('ijpost: data: ' . $xml, LOGGER_DATA);
 
                if($ij_blog !== 'test') {
-                       $x = Network::postURL($ij_blog, $xml, ["Content-Type: text/xml"]);
+                       $x = Network::post($ij_blog, $xml, ["Content-Type: text/xml"]);
                }
                logger('posted to insanejournal: ' . ($x) ? $x : '', LOGGER_DEBUG);