Author |
Topic |
|
Deleted
deleted
4116 Posts |
Posted - 27 August 2002 : 12:55:24
|
in admin_config_NT_features.asp
Bugs in font definitions like:
<font face=""" & strDefaultFontFace & """ size="""" & strHeaderFontSize & """">
(Take care of excess quotes around size) I found 3 of them around lines 86-91... The correct one is:
<font face=""" & strDefaultFontFace & """ size=""" & strHeaderFontSize & """>
in admin_forums_schedule.asp On line 65
<font face=""" & strDefaultFontFace & """ size=""" & strDefualtFontSize & """>
must be
<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>
On line 66
<font face=""" & steDefaultFontFace & """ size=""" & strDefaultFontSize & """>
had to be
<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """>
|
Stop the WAR! |
Edited by - Deleted on 28 August 2002 07:03:20 |
|
Deleted
deleted
4116 Posts |
Posted - 27 August 2002 : 15:16:11
|
in pop_help.asp On line 115
<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """ color=""" & strDefaultFontColor & """>
Two color definitions... I think the red marked one is wrong...
<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>
|
Stop the WAR! |
Edited by - Deleted on 28 August 2002 07:04:17 |
|
|
Deleted
deleted
4116 Posts |
Posted - 27 August 2002 : 15:40:51
|
In pop_messengers.asp Line 61,
<font face=""" & strDefaultFontFace & """size=""" & strHeaderFontSize & """>
A space needed before size...
<font face=""" & strDefaultFontFace & """ size=""" & strHeaderFontSize & """>
|
Stop the WAR! |
Edited by - Deleted on 28 August 2002 07:05:27 |
|
|
pweighill
Junior Member
United Kingdom
453 Posts |
Posted - 27 August 2002 : 16:36:03
|
I thought I'd have a look too.
In subscription_list.asp
Lines 215-218
Response.Write "<p align=center><font face='" & strDefaultFontFace & "' size='" & _ strDefaultFontSize & "'><b>No Subscriptions found!!!</b></font></p>" & vbNewline Response.Write "<p align=center><font face='" & strDefaultFontFace & "' size='" & _ strDefaultFontSize & "'><a href=""JavaScript:history.go(-1)"">Go Back To Forum</a></font></p>" change ' to ""
|
|
|
pweighill
Junior Member
United Kingdom
453 Posts |
Posted - 27 August 2002 : 16:36:42
|
admin_mod_dbsetup.asp & admin_mod_dbsetup2.asp each contain 4 <font> tags. I'm not quite sure but should these be </font>? |
|
|
pweighill
Junior Member
United Kingdom
453 Posts |
Posted - 27 August 2002 : 16:46:48
|
In inc_header_short.asp
Line 84 has:
vLink=""" & strActiveLinkColor & """
Should that be strVisitedLinkColor ? |
|
|
Deleted
deleted
4116 Posts |
Posted - 27 August 2002 : 16:55:00
|
quote: Originally posted by pweighill
admin_mod_dbsetup.asp & admin_mod_dbsetup2.asp each contain 4 <font> tags. I'm not quite sure but should these be </font>?
Yes, all 8 must be </font>
|
Stop the WAR! |
|
|
Deleted
deleted
4116 Posts |
Posted - 27 August 2002 : 17:04:39
|
quote: Originally posted by pweighill
In inc_header_short.asp
Line 84 has:
vLink=""" & strActiveLinkColor & """
Should that be strVisitedLinkColor ?
I don't think so, just because it same in all versions I've installed (v3.1sr4 - v4b03.x). But it can just be overseen...
|
Stop the WAR! |
|
|
Immanuel
New Member
64 Posts |
Posted - 27 August 2002 : 20:03:44
|
quote:
in admin_config_NT_features.asp
Bugs in font definitions like:
<font face=""" & strDefaultFontFace & """ size="""" & strHeaderFontSize & """">
(Take care of excess quotes around size) I found 3 of them around lines 86-91...
What to do with this? I am no programmer, and I don't understand, what I must do? Delete all in red, or some of it?
quote:
in admin_forums_schedule.asp On line 65
<font face=""" & strDefaultFontFace & """ size=""" & strDefualtFontSize & """>
On line 66
<font face=""" & steDefaultFontFace & """ size=""" & strDefaultFontSize & """>
Again - What must I do?
quote:
in pop_help.asp On line 115
<font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """ color=""" & strDefaultFontColor & """>
Two color definitions... I think the red marked one is wrong...
What to do here?
quote:
quote:
Originally posted by pweighill
admin_mod_dbsetup.asp & admin_mod_dbsetup2.asp each contain 4 <font> tags. I'm not quite sure but should these be </font>?
Yes, all 8 must be </font>
In admin_mod_dbsetup.asp I found them in line 464, 520 and 545 - missing one In admin_mod_dbsetup2.asp I found them in line 498 and 530 - missing two
Immanuel |
|
|
Deleted
deleted
4116 Posts |
Posted - 28 August 2002 : 07:00:08
|
Dear Immanuel,
These are not critical bugs. We were just pointing them to Richard so that he can correct them in the next release, i.e. v3.4.02.
You may like to wait for that release. But if you like to play with the files, its fine, I'll edit the posts above so that they are more understandable. But to learn ASP, you must also know HOWs and WHYs .
|
Stop the WAR! |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 28 August 2002 : 23:02:00
|
Everything mentioned up to this point has been fixed in v3.4.02 |
|
|
Deleted
deleted
4116 Posts |
Posted - 29 August 2002 : 00:43:06
|
I'm nearly sure that there are nothing else in font tags, 'cause I finished my work with them... |
Stop the WAR! |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 29 August 2002 : 00:56:56
|
that's good to here |
|
|
|
Topic |
|