diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-20 02:59:31 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-20 02:59:31 +0000 |
commit | d62207327c99ea070985d46eaa8399b139914a86 (patch) | |
tree | 2b44571cd8639a27b1649f97c57c02b5cb5e5395 /play/index.php | |
parent | b47b6976239b8e35284c9fa84610cec2dd6d4cd4 (diff) | |
download | ampache-d62207327c99ea070985d46eaa8399b139914a86.tar.gz ampache-d62207327c99ea070985d46eaa8399b139914a86.tar.bz2 ampache-d62207327c99ea070985d46eaa8399b139914a86.zip |
* Added new icons, and speed up icon display
* Fixed ORDER BY `track` on play selected
* Started work on editing/flagging albums and artists
Diffstat (limited to 'play/index.php')
-rw-r--r-- | play/index.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/play/index.php b/play/index.php index 07504b80..280636eb 100644 --- a/play/index.php +++ b/play/index.php @@ -210,7 +210,9 @@ header("Accept-Ranges: bytes" ); set_time_limit(0); /* We're about to start record this persons IP */ -$user->insert_ip_history(); +if (conf('track_user_ip')) { + $user->insert_ip_history(); +} /* If access control is on and they aren't local, downsample! */ if (conf('access_control') AND conf('downsample_remote')) { |