diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 02:36:58 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 02:36:58 -0500 |
commit | 8a750c3e875d590d351c3042570a134fcdf03e5d (patch) | |
tree | 846df051bf732bd588cd1571d1727123493cef5b /templates/show_random.inc.php | |
parent | a12679b13d8d06c87308b1d26bc23c6b4fa5d92e (diff) | |
download | ampache-8a750c3e875d590d351c3042570a134fcdf03e5d.tar.gz ampache-8a750c3e875d590d351c3042570a134fcdf03e5d.tar.bz2 ampache-8a750c3e875d590d351c3042570a134fcdf03e5d.zip |
Move [un]format_bytes() from general.lib.php to UI
Diffstat (limited to 'templates/show_random.inc.php')
-rw-r--r-- | templates/show_random.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_random.inc.php b/templates/show_random.inc.php index 58abec32..07df7a72 100644 --- a/templates/show_random.inc.php +++ b/templates/show_random.inc.php @@ -89,7 +89,7 @@ echo "\t\t\t" . '<option value="' . $i . '"' . ($_POST['size_limit'] == $i ? 'selected="selected"' : '') . '>' . - format_bytes($i * 1048576) . "</option>\n"; + UI::format_bytes($i * 1048576) . "</option>\n"; } ?> </select> |