in ubb_new_reply.cgi
-------------------------------------
Look for:
>>sub submit_new_reply {
>>Add below:
local($doextra, $hrefname);
-------------------------------------
should be:
-------------------------------------
>>Look for:
sub submit_new_reply {
>>Add below:
local ($doextra, $hrefname);
-------------------------------------
in ubb_edit_post.cgi
-------------------------------------
>>Find:
sub perform_edit {
local ($count, $message, $ip_number, @post_data, $edit_date, @last_numbers);
>>Add below it:
# Yea, this is the code, for the anchor hack, by Greg Hard h-realms.com
# Strict, localize, dave's haircut
local($doextra);
------------------------------------
should be:
------------------------------------
>>Find:
sub perform_edit {
local ($count, $message, $ip_number, @post_data, $edit_date, @last_numbers);
>>Add below it:
# Yea, this is the code, for the anchor hack, by Greg Hard h-realms.com
# Strict, localize, dave's haircut
local ($doextra);
------------------------------------
Space added between local and ($doextra...
[ 10-23-2001: Message edited by: GTSDurango ]