
12-11-2001, 11:14 AM
|
|
|
Join Date: Oct 2001
Location: Canada
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
[QUOTE] Originally posted by bira
OK,
I'm going to upload a new installer, which includes:
1) 'Away' auto-cancel when a user posts (optional)
2) Auto-reply to PMs while away (optional)
3) 'Away' details editable in the user's page in Admin CP
If you haven't installed the hack yet, then ignore this post and simply download the zip from the first post
If you already installed the hack, here's what you need to do to add the Admin CP bit:
Open admin/user.php
Find:
Code:
$user=$DB_site->query_first("SELECT *,FROM_UNIXTIME(joindate) AS joindate,FROM_UNIXTIME(lastvisit) AS lastvisit,FROM_UNIXTIME(lastactivity) AS lastactivity,FROM_UNIXTIME(lastpost) AS lastpost
Change to (changes marked in high):
Code:
$user=$DB_site->query_first("SELECT *,FROM_UNIXTIME(joindate) AS joindate,FROM_UNIXTIME(lastvisit) AS lastvisit,FROM_UNIXTIME(lastactivity) AS lastactivity,FROM_UNIXTIME(lastpost) AS lastpost[high],FROM_UNIXTIME(awaydate) AS awaydate[/high]
Find:
Code:
makeinputcode("IP Address","aipaddress",$user[ipaddress]);
AFTER it ADD:
PHP Code:
// Leave Away Message in Profile (v1.0)
maketableheader("Away Status");
makeyesnocode("User is away?","away",$user[away]);
makeinputcode("Away since<br>(Format yyyy-mm-dd)","awaydate",$user[awaydate]);
makeinputcode("Return date<br>(Format yyyy-mm-dd)","returndate",$user[returndate]);
makeinputcode("Away reason","awayreason",$user[awayreason]);
// Leave Away Message in Profile (v1.0)
Find:
Code:
if ($posts=="") {
$posts=0;
}
BEFORE it ADD:
PHP Code:
// Leave Away Message in Profile (v1.0)
if ($awaydate!="") {
$awaydate="UNIX_TIMESTAMP('".addslashes($awaydate)."')";
} else {
$awaydate="";
}
// Leave Away Message in Profile (v1.0)
Find:
Code:
$DB_site->query("UPDATE user SET birthday='$birthday'
Change to (changes marked in high):
Code:
$DB_site->query("UPDATE user SET [high]away=$away,awaydate=$awaydate,returndate='$returndate',awayreason='".addslashes(htmlspecialchars($awayreason))."',[/high]birthday='$birthday'
Save and upload.
|