Hi,
I found a few small bugs in the PM system of 10.03. I am posting my workarounds if that is OK.
Our forum has been around quite a while, and I have an archive of about 700 PM's since I am admin of the forum. The limit is 100.
Every time I would go to the forum, I would get the warning popup message saying I was over my limit, even though there is no inbox limit for admins (group 1). So to remove the popup from appearing for the admin group 1, I went to Includes/pm_check_inc.asp and added this around line 80, enclosing the popup message code in an if statement:
If intGroupID <> 1 then
<Popup message code is here>
End If
Also, the percentage bar would overscroll the table boundary, all the way off the page. So to fix that I did this on these files in the root folder:
In pm_inbox.asp I added right above the HTML table with the bar graph (around line 378):
If intNumOfPMs > intPmInbox Then intNumOfPMs = intPmInbox
I did similar in the pm_outbox.asp at around line 365:
If intNumOfPMs > intPmOutbox Then intNumOfPMs = intPmOutbox
With the above, the percentage slider will stay within the table boundary.
Hope the above is useful!
Thanks,
Steve
Edited by stevehal - 15 October 2011 at 2:53am