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 /lib/class/song.class.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 'lib/class/song.class.php')
-rw-r--r-- | lib/class/song.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/song.class.php b/lib/class/song.class.php index b547f71a..ac25b1a0 100644 --- a/lib/class/song.class.php +++ b/lib/class/song.class.php @@ -795,7 +795,7 @@ class Song extends database_object implements media { $this->f_tags = Tag::get_display($tags,$this->id,'song'); // Format the size - $this->f_size = format_bytes($this->size); + $this->f_size = UI::format_bytes($this->size); return true; |