GolfGirl
Beginner


Joined: Oct 13, 2007 Posts: 2
|
Posted: Wed Oct 24, 2007 6:00 pm Post subject: My groupcp.php is different from what it should be? |
|
|
I'm trying to integrate phpBB2 and Gallery 2 using the integration mod version 0.5.10. I started working through the instructions in the integration_mods.txt file, but the text that I'm trying to 'FIND' in my file groupcp.php (for example) doesn't seem to be there. For example, I'm looking for
$sql = "INSERT INTO" . USER_GROUP_TABLE . " (user_id, group_id, user_pending)
VALUES (" . $row['user_id'] . ", $group_id, 0)";
so that I can add the code for 'add new user to group in gallery' before it, but my file doesn't contain the above text, the closest I can find is
$sql = "INSERT INTO " . USER_GROUP_TABLE . " (group_id, user_id, user_pending)
VALUES ($group_id, " . $userdata['user_id'] . ", 1)";
which is obviously not the same thing.
What am I missing? Can anyone help? |
|