Code: Select all
<!-- INCLUDE linked_acct_form.html -->
Code: Select all
<!-- IF S_USER_LOGGED_IN --><!-- INCLUDE linked_acct_form.html --><!-- ENDIF -->
Code: Select all
<!-- INCLUDE linked_acct_form.html -->
Code: Select all
<!-- IF S_USER_LOGGED_IN --><!-- INCLUDE linked_acct_form.html --><!-- ENDIF -->
Code: Select all
<?php
/**
*@ dutch translation by Rotsblok of http://www.phpbbservice.nl
* DO NOT CHANGE
*/
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
$lang = array_merge($lang, array(
'LINKED_ACCT_EXPLAIN' => 'Link accounts zo dat je makkelijk tussen de accounts kan schakelen zonder dat je hoeft uit te loggen',
// Buttons and modes
'SWITCH_USER' => 'Gebruiker Overschakelen',
'LINK_USERS' => 'Gebruikers Linken',
'UNLINK_USERS' => 'Gebruikers De-linken',
// Field labels
'MASTER_NAME' => 'Hoofd Gebruikersnaam',
'MASTER_PASS' => 'Hoofd Wachtwoord',
'LINKED_NAME' => 'Gelinkte Gebruikersnaam',
'LINKED_PASS' => 'Gelinkte Gebruikers Wachtwoord',
'LINKED_ACCT' => 'Gelinkte Accounts',
// Messages
'LINK_SUCCESS' => 'Link succesvol',
'LINK_BROKEN' => 'Link Gebroken',
// Errors
'NO_LINKED_ACCTS' => 'Er zijn geen accounts gelinkte voor dez',
'BAD_MASTER_PASSWORD' => 'Ongeldige hoofd account wachtwoord',
'BAD_LINKED_PASSWORD' => 'Gelinkte gebruikersnaam of wachtwoord ongeldig',
'ACCT_NOT_LINKED' => 'Die account is niet gelinkt met deze. Goeie poging.',
'NOT_MASTER' => 'Dit account is gelinkt met een andere. Schakel over naar de hoofd account om links toe te voegen of te verwijderen.',
));
?>
Quick fix:Scriptmaster10 wrote:[phpBB Debug] PHP Notice: in file /includes/functions_linked_acct.php on line 128: Undefined variable: sql_where
Code: Select all
$master_id=0;
Code: Select all
$sql_where='';
On the UCP page.[phpBB Debug] PHP Notice: in file /includes/ucp/ucp_linked_acct.php on line 112: Undefined variable: s_hidden_fields
Code: Select all
$s_hidden_fields ='';
I'm having the exact same problem in an otherwise unmodded install of PHPBB 3.0.1MydnyteSyn wrote:(PhPBB 3.0.1) - I've uploaded the files to their respective directories. I added the SQL query as indicated at the beginning of the instructions. I refreshed the template and I purged the cache. I must be missing something because, even after reading through this thread, nothing appears in the user cp for linking accounts, nothing appears in the admin cp for adding this to the .MODS.