summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFelix Eckhofer <[email protected]>2014-07-15 15:32:28 +0200
committerFelix Eckhofer <[email protected]>2014-07-15 16:23:46 +0200
commit523bd90bafffee18d9c7652c68f4c08d25be339e (patch)
tree79f9b2062cedf8eab3b848eaf33b377fe4bf380c /include
parent06c4c9ebaec3187d5e74693d932814e8d991daba (diff)
Store size of enclosure to database
Diffstat (limited to 'include')
-rw-r--r--include/rssfuncs.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index 60cb3b2d2..cdc490cb0 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -989,7 +989,7 @@
if (is_array($encs)) {
foreach ($encs as $e) {
$e_item = array(
- $e->link, $e->type, $e->length, $e->title);
+ $e->link, $e->type, $e->length, $e->title, $e->width, $e->height);
array_push($enclosures, $e_item);
}
}
@@ -1009,14 +1009,16 @@
$enc_type = db_escape_string($enc[1]);
$enc_dur = db_escape_string($enc[2]);
$enc_title = db_escape_string($enc[3]);
+ $enc_width = intval($enc[4]);
+ $enc_height = intval($enc[5]);
$result = db_query("SELECT id FROM ttrss_enclosures
WHERE content_url = '$enc_url' AND post_id = '$entry_ref_id'");
if (db_num_rows($result) == 0) {
db_query("INSERT INTO ttrss_enclosures
- (content_url, content_type, title, duration, post_id) VALUES
- ('$enc_url', '$enc_type', '$enc_title', '$enc_dur', '$entry_ref_id')");
+ (content_url, content_type, title, duration, post_id, width, height) VALUES
+ ('$enc_url', '$enc_type', '$enc_title', '$enc_dur', '$entry_ref_id', $enc_width, $enc_height)");
}
}