summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMatt Haley <[email protected]>2013-06-13 22:46:27 -0700
committerMatt Haley <[email protected]>2013-06-13 22:49:31 -0700
commitafd0849e30f5ed7a21376cb26ca851f29cfe07c7 (patch)
tree9e7508d870e67ab9292debba80d30e061e517048 /include
parentb684a2e6654ef749832f60f4c4243a42e4f583a8 (diff)
Don't preload audio attachments.
Diffstat (limited to 'include')
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php
index 344d66ae1..69be5cf3f 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -3036,7 +3036,7 @@
if ($_SESSION["hasAudio"] && (strpos($ctype, "ogg") !== false ||
$_SESSION["hasMp3"])) {
- $entry .= "<audio controls>
+ $entry .= "<audio preload=\"none\" controls>
<source type=\"$ctype\" src=\"$url\"></source>
</audio>";