Prob. mit Point Mod 2.0.0
Verfasst: 04.10.2003 18:54
Ich finde bei mir mehrere dieser Zeilen.
Welche soll ich nehmen:
Also ich finde bei meiner 2.0.4 Version mehrere Stellen in dieser Datei die so aussehen:
Welche soll ich nehmen oder einfach nach allen setzen?
Welche soll ich nehmen:
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------
#
includes/functions_post.php
#
#-----[ FIND ]------------------------------------------
#
global $userdata, $user_ip;
#
#-----[ REPLACE WITH ]------------------------------------------
#
global $userdata, $user_ip, $post_info;
#
#-----[ FIND ]------------------------------------------
#
}
}
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
if ($board_config['points_post'] && !$post_info['points_disabled'])
{
$points = abs(($mode == 'newtopic') ? $board_config['points_topic'] : $board_config['points_reply']);
if ($userdata['user_id'] != ANONYMOUS)
{
add_points($userdata['user_id'], $points);
}
}
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_register.php
Code: Alles auswählen
}
}
}