diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-02-28 05:44:49 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-02-28 05:44:49 +0000 |
commit | 31d5e782dedb0a09b5d73e7bac61dccfe25e73f1 (patch) | |
tree | b46198c3cb0137a3c4d8e4faf99a9022a9d87f88 /templates/show_ip_history.inc.php | |
parent | 4626bc1ff1a2c2a8bc2b37f5aece23a2ee6d9104 (diff) | |
download | ampache-31d5e782dedb0a09b5d73e7bac61dccfe25e73f1.tar.gz ampache-31d5e782dedb0a09b5d73e7bac61dccfe25e73f1.tar.bz2 ampache-31d5e782dedb0a09b5d73e7bac61dccfe25e73f1.zip |
removed ip2int, int2ip custom functions fixed browse issues when adding filters in specific order
Diffstat (limited to 'templates/show_ip_history.inc.php')
-rw-r--r-- | templates/show_ip_history.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_ip_history.inc.php b/templates/show_ip_history.inc.php index 9b266772..801d51cd 100644 --- a/templates/show_ip_history.inc.php +++ b/templates/show_ip_history.inc.php @@ -43,7 +43,7 @@ <?php echo date("d/m/Y H\hi",$data['date']); ?> </td> <td class="cel_ipaddress"> - <?php echo int2ip($data['ip']); ?> + <?php echo long2ip($data['ip']); ?> </td> </tr> <?php } ?> |