groupcp.php
  • FIND:

     NOTE --- This is a partial match, the whole line on a fresh installation looks like this:
    	$temp_url = append_sid("search.$phpEx?search_author=" . urlencode($username) . "&showresults=posts");
    $temp_url = append_sid("search
    
  • IN-LINE FIND:

    $username
    
  • IN-LINE REPLACE WITH:

    $row['username']
    
  • FIND:

     NOTE --- This is a partial match, the whole line on a fresh installation looks like this:
    	$search_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_search'] . '" alt="' . $lang['Search_user_posts'] . '" title="' . $lang['Search_user_posts'] . '" border="0" /></a>';
    $search_img = '<a href="'
    
  • IN-LINE FIND:

    . $lang['Search_user_posts']
    
  • IN-LINE REPLACE WITH:

    . sprintf($lang['Search_user_posts'], $row['username'])
    
  • IN-LINE FIND:

    . $lang['Search_user_posts']
    
  • IN-LINE REPLACE WITH:

    . sprintf($lang['Search_user_posts'], $row['username'])
    
  • FIND:

     NOTE --- This is a partial match, the whole line on a fresh installation looks like this:
    	$search = '<a href="' . $temp_url . '">' . $lang['Search_user_posts'] . '</a>';
    $search = '<a href="'
    
  • IN-LINE FIND:

    . $lang['Search_user_posts']
    
  • IN-LINE REPLACE WITH:

    . sprintf($lang['Search_user_posts'], $row['username'])
    
  • FIND:

    		//
    		// Load and process templates
    		//
    
  • AFTER, ADD:

    		$page_title = $lang['Group_Control_Panel'];