There are some parts that we should do more than once. while editing files.
For exmaple,
#
#-----[ OPEN ]------------------------------------------
#
includes/functions_post.php
#
#-----[ FIND ]------------------------------------------
#
global $userdata, $user_ip;
#
#-----[ AFTER, ADD ]------------------------------------------
#
// BEGIN cmx_slash_news_mod
if( isset( $news_category ) && is_numeric( $news_category ) )
{
$news_id = intval( $news_category );
}
else
{
$news_id = 0;
}
// END cmx_slash_news_mod
There are 3 instances of "global $userdata, $user_ip;" in "functions_post.php" so we need to do the process above 3 times.
I can't remember which ones are to be done more than once since I spent hell lot of time.
Can someon please specify which ones are to be edited more than once?
Thanks for the great mod, anyway.