Bug: Language_file.inc
Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=19565
Printed Date: 12 April 2026 at 2:00am Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com
Topic: Bug: Language_file.inc
Posted By: nexus
Subject: Bug: Language_file.inc
Date Posted: 26 April 2006 at 10:43am
Hi,
There is a bug in the language_file.inc in WWF8
At line 296 it says:
Const strTxtErrorMemberSerach = "Member Search\t- Enter a Members Username to search for" |
Spelling mistake.. :P
|
Replies:
Posted By: WebWiz-Bruce
Date Posted: 26 April 2006 at 10:59am
This isn't really a bug as variables can be called anything you like, the only place you need to look for spelling mistakes is in the actual text outputted by the variable.
------------- https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting
|
Posted By: nexus
Date Posted: 26 April 2006 at 11:13am
Yes, I know they can be called whatever you like, but isn't it so that if you spell a const for serach, then you need to call the reffering place in the asp page for the same.
Ex serach - serach (referring place in asp page) = output correct text
Ex serach - search (referring place in asp page) = output error
?
Cheers
|
Posted By: WebWiz-Bruce
Date Posted: 26 April 2006 at 11:32am
Yes the word search is spelled wrong in the variable name, but this is NOT a bug as it has no effect on the running of the software as the same variable name (whether misspelled or not) will be used within other places in the code.
If you look through you will probably find dozens if not 100's of misspelled words in variables and comments within the code, but they don't matter to the running of the software.
All outputted text within the software has been run through a spell checker, which is the important bit.
------------- https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting
|
Posted By: nexus
Date Posted: 26 April 2006 at 1:23pm
|