Ich sehe da nur die Länder D CH & A... Gibt es eventuell die Möglichkeit, weitere Nachbarländer unterzubringen?
Ich würde Frankreich benötigen...

Edit: In den Download Ordner ist eine Datei namens Impressum.php...
Braucht man die???

Code: Alles auswählen
'L_ONLINE_EXPLAIN' => $l_online_time,
Code: Alles auswählen
'U_GEOMAP' => append_sid("{$phpbb_root_path}geomap.$phpEx"),
Code: Alles auswählen
<li class="icon-geomap"><a href="geomap.php" title="Usermap">Usermap</a></li>
Code: Alles auswählen
<li class="icon-geomap"><a href="{U_GEOMAP}" title="Usermap">Usermap</a></li>
Code: Alles auswählen
if (!empty($profile_fields['row']))
{
$template->assign_vars($profile_fields['row']);
}
Code: Alles auswählen
if (!empty($profile_fields['blockrow']))
{
foreach ($profile_fields['blockrow'] as $key => $value)
{
if (isset($profile_fields['blockrow'][$key]['S_PROFILE_PLZ']))
{
$profile_fields['blockrow'][$key]['PROFILE_FIELD_VALUE'] = sprintf("%05d", $profile_fields['blockrow'][$key]['PROFILE_FIELD_VALUE']);
}
}
}
Code: Alles auswählen
function generate_string($profile_row, $preview = false)
{
global $template;
$profile_row['field_value'] = $this->get_var('string', $profile_row, $profile_row['lang_default_value'], $preview);
Code: Alles auswählen
if ($profile_row['field_name'] = 'plz')
{
$profile_row['field_value'] = sprintf("%05d", $profile_row['field_value']);
}
Code: Alles auswählen
// Assign template variables
$type_func = 'generate_' . $this->profile_types[$profile_row['field_type']];
Code: Alles auswählen
if ($profile_row['field_name'] == 'plz')
{
$type_func = 'generate_string';
}
Ich hab des ma soweit alles eingefügt, da auch ich Member aus Österreich hab, aber ausser des jetzte die Null am Anfang steht ist nichts passiert ... die Member werden nach wie vor nicht auf der Karte angezeigt.Frank1604 hat geschrieben:Das Postleitzahl 5 stellig Problem:
öffne:memberlist.php
finde:danach füge ein:Code: Alles auswählen
if (!empty($profile_fields['row'])) { $template->assign_vars($profile_fields['row']); }
Öffnen: includes/functions_profile_fields.phpCode: Alles auswählen
if (!empty($profile_fields['blockrow'])) { foreach ($profile_fields['blockrow'] as $key => $value) { if (isset($profile_fields['blockrow'][$key]['S_PROFILE_PLZ'])) { $profile_fields['blockrow'][$key]['PROFILE_FIELD_VALUE'] = sprintf("%05d", $profile_fields['blockrow'][$key]['PROFILE_FIELD_VALUE']); } } }
finde:danach füge ein:Code: Alles auswählen
function generate_string($profile_row, $preview = false) { global $template; $profile_row['field_value'] = $this->get_var('string', $profile_row, $profile_row['lang_default_value'], $preview);
finde:Code: Alles auswählen
if ($profile_row['field_name'] = 'plz') { $profile_row['field_value'] = sprintf("%05d", $profile_row['field_value']); }
danach füge ein:Code: Alles auswählen
// Assign template variables $type_func = 'generate_' . $this->profile_types[$profile_row['field_type']];
Das sollte es gewesen sein.Code: Alles auswählen
if ($profile_row['field_name'] == 'plz') { $type_func = 'generate_string'; }