tomythius wrote: Note the extra column in the who is online table...
Code: Select all
"USER_AGENT" => $guest_agent,
Code: Select all
"USER_AGENT" => htmlspecialchars($guest_agent),
Code: Select all
"USER_AGENT" => $reg_agent,
Code: Select all
"USER_AGENT" => htmlspecialchars($reg_agent),
markus_petrux wrote: Could you please consider showing the useragent as another table row (using colspan="4" and gensmall)?
Code: Select all
#
#-----[ FIND ]------------------------------------------
#
$sql = "UPDATE " . SESSIONS_TABLE . "
SET session_time
#
#-----[ IN-LINE FIND ]------------------------------------------
#
$thispage_id
#
#-----[ IN-LINE AFTER, ADD ]------------------------------------------
#
, session_agent = $agent
Code: Select all
$sql = "UPDATE " . SESSIONS_TABLE . "
SET session_time = $current_time, session_page = $thispage_id$update_admin
Code: Select all
$sql = "UPDATE " . SESSIONS_TABLE . "
SET session_time = $current_time, session_page = $thispage_id, session_agent = $agent$update_admin
kulinar wrote: in my sessions.php file the code isCode: Select all
$sql = "UPDATE " . SESSIONS_TABLE . " SET session_time = $current_time, session_page = $thispage_id$update_admin
kulinar wrote: which means the new code will look like thatwhich looks strange to meCode: Select all
$sql = "UPDATE " . SESSIONS_TABLE . " SET session_time = $current_time, session_page = $thispage_id, session_agent = $agent$update_admin
![]()
Yes, I have modded sessions.php many times. I run heavily modded board.tomythius wrote: I don't see this in my source, and it looks badly formed. Have you already modded sessions.php?
Code: Select all
$sql = "UPDATE " . SESSIONS_TABLE . "
SET session_time = $current_time, session_page = $thispage_id, session_agent = $agent$update_admin
Code: Select all
$sql = "UPDATE " . SESSIONS_TABLE . "
SET session_time = $current_time, session_page = $thispage_id$update_admin, session_agent = $agent
I don't know which mod transformed my session.php file. What is so bad with it?tomythius wrote: ...and it looks badly formed
MakePB wrote: It is interesting and useful.Indeed.
Could we maybe get a alternative link where your newest version is released (1.0.4) because it seems that they are some bugs fixed?
Thanks
skuld the great wrote: Thats cool!
Is there anything like this for showing it stamped on each post?