diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-10 00:07:00 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-10 00:07:00 +0000 |
commit | 9a54e854bf525563fa51de97c06d3604c7a4639a (patch) | |
tree | ac665f2ae157800fa911ef4cce79e708db4b8bc4 /lib/class/browse.class.php | |
parent | a3e1bf7850a641f0c0c3f5b7d1a755edbb053a6c (diff) | |
download | ampache-9a54e854bf525563fa51de97c06d3604c7a4639a.tar.gz ampache-9a54e854bf525563fa51de97c06d3604c7a4639a.tar.bz2 ampache-9a54e854bf525563fa51de97c06d3604c7a4639a.zip |
add caching to video browse, update changelog
Diffstat (limited to 'lib/class/browse.class.php')
-rw-r--r-- | lib/class/browse.class.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php index 216cc926..316061ab 100644 --- a/lib/class/browse.class.php +++ b/lib/class/browse.class.php @@ -170,6 +170,7 @@ class Browse extends Query { show_box_bottom(); break; case 'video': + Video::build_cache($object_ids); show_box_top(_('Videos'),$class); require_once Config::get('prefix') . '/templates/show_videos.inc.php'; show_box_bottom(); |