The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
Does anyone have a copy of this mod anywhere? The links are dead, I installed it eons ago and now want to try and add it to the User Space mod.
Thanks in advance.<
Thanks in advance.<
Posted
No I didn't see that.
However that fixes the bookmarks but breaks the drafts.
<
Microsoft VBScript runtime error '800a000d'middle line...
Type mismatch: 'strEditDate'
/forum/user_space.asp, line 658
Code:
if strUSDraftAutoDeleteSwitch = 1 and strUSDraftAutoDelete <> "" then
if DateDiff("d",strEditDate,strForumTimeAdjust) >= (strUSDraftAutoDelete - intDraftWarn) then
strTrimWarning = "<font color=""" & strHiLiteFontColor & """><acronym title=""This Draft will be deleted soon"">*</acronym></font>"
Last edited by bobby131313 on 18 February 2008, 17:14
Posted
Posted
Originally posted by blackinwhiteThe code I posted above does this. If you want something that goes farther back, I have some code that looks like it might do that. Its old and I've forgot if it works or not.<
is it possible to get it forward like;
if it's today, just say "2 hours ago" ?
_-/Cripto9t\-_
Posted
I need to go through the code and change everything that compares dates, to use StrToDate()<
_-/Cripto9t\-_
Posted
Originally posted by blackinwhite what I mean is more like this oneMight take a crack at a mod that does that soon, if I've the time.
http://www.tanguay.info/web/codeExample.php?id=543
<
Search is your friend
“I was having a mildly paranoid day, mostly due to thefact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Posted
Originally posted by blackinwhite what I mean is more like this oneMight take a crack at a mod that does that soon, if I've the time.
http://www.tanguay.info/web/codeExample.php?id=543
great news, thank you.<
Posted
Great so far, but is there a small tweak that will alter the way the Statistics post with the 'last post 5hr. 33 min. ago 10:19:40 by: webmaster'
be changed to show 'last post 5hr. 33min. ago by: webmaster'
In other words when the date post is today it removed the time of post element.
But obviously any other posting time ie yesterday and previous dates the stats still shows post time. kindest regards andy<
be changed to show 'last post 5hr. 33min. ago by: webmaster'
In other words when the date post is today it removed the time of post element.
But obviously any other posting time ie yesterday and previous dates the stats still shows post time. kindest regards andy<
Posted
Originally posted by Andy Humm
Great so far, but is there a small tweak that will alter the way the Statistics post with the 'last post 5hr. 33 min. ago 10:19:40 by: webmaster'
be changed to show 'last post 5hr. 33min. ago by: webmaster'
In other words when the date post is today it removed the time of post element.
But obviously any other posting time ie yesterday and previous dates the stats still shows post time. kindest regards andy
I have changed chkTime function in inc_func_common.asp, try this;
Code:
function chkTime(fTime)
if fTime = "" or isNull(fTime) then
exit function
end If
If left(fTime,8) = left(DateToStr(strForumTimeAdjust),8) then
minutesTotal = datediff("n",strtodate(fTime),strForumTimeAdjust)
hoursTotal = int(minutesTotal / 60)
daysSince = int(hoursTotal / 24)
hoursSince = hoursTotal mod 24
minutesSince = minutestotal mod 60
' if daysSince = 1 then ChkTime = ChkTime & daysSince & " gün, "
' if daysSince > 1 then ChkTime = ChkTime & daysSince & " gün, "
if hoursSince = 1 then ChkTime = ChkTime & hoursSince & " hour, "
if hoursSince > 1 then ChkTime = ChkTime & hoursSince & " hours, "
ChkTime = ChkTime & minutesSince & " minutes ago."
else
if strTimeType = 12 then
if cLng(Mid(fTime, 9,2)) > 12 then
chkTime = ChkTime & " " & _
(cLng(Mid(fTime, 9,2)) -12) & ":" & _
Mid(fTime, 11,2) & ":" & _
Mid(fTime, 13,2) & " " & "PM"
elseif cLng(Mid(fTime, 9,2)) = 12 then
chkTime = ChkTime & " " & _
cLng(Mid(fTime, 9,2)) & ":" & _
Mid(fTime, 11,2) & ":" & _
Mid(fTime, 13,2) & " " & "PM"
elseif cLng(Mid(fTime, 9,2)) = 0 then
chkTime = ChkTime & " " & _
(cLng(Mid(fTime, 9,2)) +12) & ":" & _
Mid(fTime, 11,2) & ":" & _
Mid(fTime, 13,2) & " " & "AM"
else
chkTime = ChkTime & " " & _
Mid(fTime, 9,2) & ":" & _
Mid(fTime, 11,2) & ":" & _
Mid(fTime, 13,2) & " " & "AM"
end if
else
ChkTime = ChkTime & " " & _
Mid(fTime, 9,2) & ":" & _
Mid(fTime, 11,2) & ":" & _
Mid(fTime, 13,2)
end If
End if
Last edited by blackinwhite on 22 February 2008, 15:05
Posted
There's also 2 lines on topic.asp (search "edited by") that I changed to..
Makes better sense in all the scenarios. You don't get "Edited by Joe Blow on 43 minutes ago"
<
Code:
"Edited by " & Reply_LastEditByName & " - " & chkDate(Reply_LastEdit, " " ,true) & "</font></td>" & vbNewLine & _Makes better sense in all the scenarios. You don't get "Edited by Joe Blow on 43 minutes ago"
<
Email Member
Message Member
Post Moderation
FileUpload
If you're having problems uploading, try choosing a smaller image.
Preview post
Send Topic
Loading...