diff --git a/backend.php b/backend.php index 2f1e7c2f8..36d1a66ee 100644 --- a/backend.php +++ b/backend.php @@ -1996,16 +1996,16 @@ SUM(LENGTH(content)+LENGTH(title)+LENGTH(link)+LENGTH(guid)) AS db_size FROM ttrss_entries WHERE owner_uid = '$uid'"); - $db_size = db_fetch_result($result, 0, "db_size"); + $db_size = round(db_fetch_result($result, 0, "db_size") / 1024); - print "Approx. DB size$db_size bytes"; + print "Approx. DB size$db_size KBytes"; print ""; print "

Subscribed feeds

"; $result = db_query($link, "SELECT id,title,feed_url FROM ttrss_feeds - WHERE owner_uid = '$uid'"); + WHERE owner_uid = '$uid' ORDER BY title"); print "