From ad76e6944a58986c0564ddf22f8eba4289b455d1 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Wed, 18 May 2016 22:35:28 +0200 Subject: [PATCH] tweeper.php: rename DomDocument() to DOMDocument() DOMDocument() is the more used form, it is also already used in some other parts of the file. --- tweeper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweeper.php b/tweeper.php index 579aae1..cc261ef 100644 --- a/tweeper.php +++ b/tweeper.php @@ -150,7 +150,7 @@ class Tweeper { return ''; } - $dom = new DomDocument(); + $dom = new DOMDocument(); $enc = $dom->createElement('enclosure'); $enc->setAttribute('url', $url_info['url']); $enc->setAttribute('length', $url_info['download_content_length']); -- 2.1.4