Quote:
Originally Posted by Delphiprogrammi
hi people,
i've spotted and fixed the urls linking problem.In emails aws sends out.If you have "send email to warned member" turned on and you get this
Code:
Dear tester,
A warning you have received for violating Array[bbtitle] Rules has been totally removed from your account, by the Forums team. The removed warning concerned:
you are crossposting
(Warning Type = 'CrossPosting')
The post for which you were warned, and whose warning has now been totally removed, can be seen here:
Array[bburl]/showthread.php?p=165
With this warning being removed, 4 point(s) have been removed from your total.
Your total Warning Level at the moment is: 0 point(s).
Please reply back if you have a dispute.
----------------
Array[bbtitle] Team
there should be a proper link to the post for which the member got warned in the first place
Code:
Dear tester,
A warning you have received for violating Array[bbtitle] Rules has been totally removed from your account, by the Forums team. The removed warning concerned:
you posted urls before 15 posts
(Warning Type = 'links')
The post for which you were warned, and whose warning has now been totally removed, can be seen here:
http://www.server.com/forums/showthread.php?p=165
With this warning being removed, 1 point(s) have been removed from your total.
Your total Warning Level at the moment is: 0 point(s).
Please reply back if you have a dispute.
----------------
Array[bbtitle] Team
in admincp/admin_warn.php find the $thread2 variable BUT ONLY if it is a post related warning ... and change it to
PHP Code:
$thread2="{$vbulletin->options['bburl']}/showthread.php?p={$warn['warned_post']}";
that should do it that's one more problem sorted out
|
I think that will also sort out the problem with doing a complete warning removal in the admincp, when it sends a PM to the user that has had the warning removed from them, it is the same Array[bbtitle] problem.
So, your solution should actually kill that problem as well, will test it out and let you know