This seems to be a really cool mod, from what I can decipher in German. However, there seems to be incompatibilities between this MOD and phpBB 2.0.10.
I hope development of this MOD has not been abandoned
Thank you in advance
Ford
Code: Alles auswählen
#
#-----[ FIND ]------------------------------------------
#
if ( !empty($HTTP_POST_VARS['search_time']) || !empty($HTTP_GET_VARS['search_time']))
{
$search_time = time() - ( ( ( !empty($HTTP_POST_VARS['search_time']) ) ? intval($HTTP_POST_VARS['search_time']) : intval($HTTP_GET_VARS['search_time']) ) * 60 );
}
else
{
$search_time = 0;
}Code: Alles auswählen
if ( !empty($HTTP_POST_VARS['search_time']) || !empty($HTTP_GET_VARS['search_time']))
{
$search_time = time() - ( ( ( !empty($HTTP_POST_VARS['search_time']) ) ? intval($HTTP_POST_VARS['search_time']) : intval($HTTP_GET_VARS['search_time']) ) * 86400 );
$topic_days = (!empty($HTTP_POST_VARS['search_time'])) ? intval($HTTP_POST_VARS['search_time']) : intval($HTTP_GET_VARS['search_time']);
}
else
{
$search_time = 0;
$topic_days = 0;
}Code: Alles auswählen
#
#-----[ FIND ]------------------------------------------
#
//
// Sorting Search Results - END
//
Code: Alles auswählen
//
// Sorting
//
$s_sort_by = "";
for($i = 0; $i < count($sort_by_types); $i++)
{
$s_sort_by .= '<option value="' . $i . '">' . $sort_by_types[$i] . '</option>';
}
Code: Alles auswählen
#
#-----[ FIND ]------------------------------------------
#
else if ( $search_keywords != '' || $search_author != '' || $search_id || )
Code: Alles auswählen
else if ( $search_keywords != '' || $search_author != '' || $search_id )Code: Alles auswählen
#
#-----[ FIND ]------------------------------------------
#
else
{
message_die(GENERAL_MESSAGE, $lang['No_search_match']);
}
}
}Code: Alles auswählen
{
message_die(GENERAL_MESSAGE, $lang['No_search_match']);
}
}##############################################################
##
## Author Notes:
## social networking mod
## main feature: ( I will rephrase these later)
## - friend list, both parties has to agree to become friends
## - show friends on one's profile or on a seperate friends page
## - show connection between one user and another, maximum 3 degree of seperation,
## i.e. will show friend's friend's friend, but will not show friend's friend's friend's friend.
## - can add, delete friend
## - can invite outside friend to join, upon registration, he automatically become the friend of the user who invited him
## - friend can make comment, user has to approve it before others can see it
## - user enter extra information when registering or editing their own profiles
## - display extra user information on profile
## - extra information has link to a list of people who share the same infomation, like same favorite song, etc.
## - admin can add, delete, edit types of extra user information,
## - admin can provide options, including empty option, for single or multiple selection type of user information
## - admin can change display order, decide if a information field is linkable on profile.
## - user can search other users based on extra user information
## - 2 search mode, quick search and detailed search, in detailed search you can provide multiple search criteria,
## for example, you can search gender=female, status=single etc.
##
##
##############################################################