View Single Post
pat841
Member
Join Date: Jun 2013
Location: Boston
Old 06-08-2013 , 08:08   Re: [ANY] adminWatch (v1.0.3)
Reply With Quote #12

Quote:
Originally Posted by Smarmy View Post
Seconded. Logging admin actions would be a great addition.
I have added it to ToDO and I hope to add it in the next version.

Quote:
Originally Posted by DoPe^ View Post
hmm im getting this Warning on the webpage

Code:
Warning: date() expects parameter 2 to be long, string given in /home/clanroy2/public_html/adminwatch/index.php on line 29
This will be fixed in later versions, but replace:

PHP Code:
'last_played' => date("F j, Y, g:i a"$db->Record['last_played']) 
with:

PHP Code:
'last_played' => date("F j, Y, g:i a"strtotime($db->Record['last_played'])) 
and that should fix the warning.
__________________

Last edited by pat841; 06-08-2013 at 08:22.
pat841 is offline