Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 11
Seite [1]
gamermazzo


Going for pro




Beiträge: 450
# Thema - 15.05.2010 um 19:28 Uhr
Wir haben ein Problem,
und zwar kommt, wenn wir auf User gehen und auf irgendein Profil dieser Text ^^
"
Fatal error: Call to undefined function cs_html_msnmail() in /var/www/web19/html/mods/users/view.php on line 151"



------------------
Gruß

Mazzo
Inaktiv
reVerB


Geekboy




Beiträge: 1237
# Antwort: 1 - 15.05.2010 um 19:33 Uhr
Seit wann besteht der Fehler?
Wurde etwas geändert?


Offline
|
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 2 - 15.05.2010 um 19:34 Uhr
naja er sagt halt das er die function nicht findet,
hast du versucht irgendwelche addons fürs profil zinstallieren?


Inaktiv
|
gamermazzo
Thread-Ersteller


Going for pro




Beiträge: 450
# Antwort: 3 - 15.05.2010 um 19:46 Uhr
ja xfire und steam addon, außerdem hab ich coins+bets draufgehauen, jedoch war das Tage zuvor ^^

Wie könnte ich schauen ob es daran liegt, es liegen keine unistall.sql's dabei :(


------------------
Gruß

Mazzo

Zuletzt editiert von gamermazzo am 15.05.2010 um 20:00 Uhr (1x Editiert)
Inaktiv
|
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 4 - 15.05.2010 um 20:10 Uhr
lad einfach mal die org. view datein hoch

also mods/users/view.php
und themes/base oder custom/users/view.tpl


Inaktiv
|
reVerB


Geekboy




Beiträge: 1237
# Antwort: 5 - 15.05.2010 um 20:11 Uhr
Ähhm das sind alles Module, die etwas im Profil hinterlassen. Das könnte schon das Problem sein. Denn anscheinend ist dort eine HTML-Funktion nicht zu finden. Kanns ein, das damit einiges überschrieben wurde. Aber wie das so zu beheben ist, weiß ich net.


Offline
|
Jam2 ClanSphere Team


Highlander





Beiträge: 3291
# Antwort: 6 - 15.05.2010 um 21:15 Uhr
1. Welche CSP Version
2. Wurde was an der system/output/xhtml_10.php geändert?


------------------
Gruß/ Best regards
Jam2

Nützliche Forumbeiträge/Codepastes: (Useful comments in our board / codepastes)
Template Switch for index.php
Board Navlist last posts

Edi: könnte man denn auch hier eine erweiterung einfügen?
Jam2: das web ist wie toyota.....
Edi: hö ?
Jam2: nichts ist unmöglich!


Inaktiv
|
gamermazzo
Thread-Ersteller


Going for pro




Beiträge: 450
# Antwort: 7 - 15.05.2010 um 21:16 Uhr
Mods/view.php
mehr... +-

 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
1. / 2. / ... 
<?php
// ClanSphere 2009 - www.clansphere.net
// $Id: view.php 3009 2009-05-03 14:57:11Z hajo $

$cs_lang cs_translate('users');

$users_id $_GET['id'];
settype($users_id,'integer');
$cs_user cs_sql_select(__FILE__,'users','*',"users_id = '" $users_id "'");

if(empty(
$cs_user['users_active'])) {
  
$data['head']['action'] = $cs_lang['profile'];
  
$data['head']['body_text'] = $cs_lang['not_active_text'];

  echo 
cs_subtemplate(__FILE__,$data,'users','head');

  
$data['lang']['not_active'] = $cs_lang['not_active'];
  echo 
cs_subtemplate(__FILE__,$data,'users','not_active');
}
elseif(!empty(
$cs_user['users_delete'])) {
  
$data['head']['action'] = $cs_lang['profile'];
  
$data['head']['body_text'] = $cs_lang['delete_text'];

  echo 
cs_subtemplate(__FILE__,$data,'users','head');

  
$data['lang']['delete'] = $cs_lang['delete'];
  echo 
cs_subtemplate(__FILE__,$data,'users','delete');
}
else {
  
$data['head']['action'] = $cs_lang['profile'];
  
$data['head']['body_text'] = cs_addons('users','view',$users_id,'users');

  echo 
cs_subtemplate(__FILE__,$data,'users','head');
  
  
$data['if']['buddies_active'] = $account['access_buddys'] >= true false;

  
$hidden explode(',',$cs_user['users_hidden']);
  
#$allow = $users_id == $account['users_id'] OR $account['access_users'] > 4 ? 1 : 0;
  
$allow 0;
  if(
$users_id == $account['users_id'] OR $account['access_users'] > 4) {
    
$allow 1;
  }

  
$data['if']['own_profile'] = $users_id == $account['users_id'] ? true false;
  
$data['url']['picture'] = cs_url('users','picture');
  
$data['url']['profile'] = cs_url('users','profile');

  
$data['users']['nick'] = cs_secure($cs_user['users_nick']);
  
$data['url']['buddy_create'] = cs_url('buddys','create','id=' $cs_user['users_id']);
  
$data['url']['message_create'] = cs_url('messages','create','to=' cs_secure($cs_user['users_nick']));
  if(empty(
$cs_user['users_picture'])) {
    
$data['users']['picture'] = $cs_lang['nopic'];
  } else {
    
$place 'uploads/users/' $cs_user['users_picture'];
    
$size getimagesize($cs_main['def_path'] . '/' $place);
    
$data['users']['picture'] = cs_html_img($place,$size[1],$size[0]);
  }  

  
$content cs_secure($cs_user['users_name']);
  if(
in_array('users_name',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['name'] =  empty($cs_user['users_name']) ? '--' $content;

  
$content cs_secure($cs_user['users_surname']);
  if(
in_array('users_surname',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['surname'] = empty($cs_user['users_surname']) ? '--' $content;

  
$data['lang']['sex'] = $cs_lang['sex'];
  if(empty(
$cs_user['users_sex'])) { $data['users']['sex'] = '--'; }
  if(
$cs_user['users_sex'] == 'male') { $data['users']['sex'] = $cs_lang['male']; }
  if(
$cs_user['users_sex'] == 'female') { $data['users']['sex'] = $cs_lang['female']; }

  
$data['lang']['birth_age'] = $cs_lang['birth_age'];
  if (!empty(
$cs_user['users_age'])) {
    
$content cs_date('date',$cs_user['users_age']);
    
$birth explode ('-'$cs_user['users_age']);
    
$age cs_datereal('Y') - $birth[0];
    if(
cs_datereal('m')<=$birth[1]) { $age--; }
    if(
cs_datereal('d')>=$birth[2] AND cs_datereal('m')==$birth[1]) { $age++; }
    
$content .= ' (' $age ')';
  }
  if(
in_array('users_age',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['age'] = empty($cs_user['users_age']) ? '--' $content;

  
$content = empty($cs_user['users_height']) ? '--' $cs_user['users_height'] . ' cm';
  if(
in_array('users_height',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['height'] = empty($cs_user['users_height']) ? '--' $content;
  
  
$content cs_secure($cs_user['users_adress']);
  if(
in_array('users_adress',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['adress'] = empty($cs_user['users_adress']) ? '--' $content;
  
  
$data['lang']['postal_place'] = $cs_lang['postal_place'];
  if(empty(
$cs_user['users_postalcode']) AND empty($cs_user['users_place'])) {
    
$data['users']['postal_place'] =  '--';
  }
  else {
    
$content cs_secure($cs_user['users_postalcode']) . ' - ' cs_secure($cs_user['users_place']);
    if(
in_array('users_place',$hidden)) {
      
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
    }
    
$data['users']['postal_place'] =   $content;
  }
  
  if(empty(
$cs_user['users_country'])) {
    
$data['users']['country'] = '-';
  }
  else {
    
$url 'symbols/countries/' $cs_user['users_country'] . '.png';
    
$data['users']['country'] =  cs_html_img($url,11,16);
    include_once(
'lang/' $account['users_lang'] . '/countries.php');
    
$country $cs_user['users_country'];
    
$data['users']['country'] .=  ' ' $cs_country[$country];
  }

  
$data['users']['registered'] = cs_date('unix',$cs_user['users_register'],1);
  
$data['users']['laston'] = !empty($cs_users['users_invisible']) ? '--' cs_date('unix',$cs_user['users_laston'],1);

  
$content cs_html_mail($cs_user['users_email']);
  if(
in_array('users_email',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['email'] =  empty($cs_user['users_email']) ? '--' $content;

  
$cs_user['users_url'] = cs_secure($cs_user['users_url']);
  
$content cs_html_link('http://' $cs_user['users_url'],$cs_user['users_url']);
  if(
in_array('users_url',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['url'] = empty($cs_user['users_url']) ? '--' $content;

  
$cs_icqstart 'http://web.icq.com/whitepages/online?icq=';
  
$content cs_html_link('http://www.icq.com/' $cs_user['users_icq'],$cs_user['users_icq']);
  
$content .= ' ' cs_html_img($cs_icqstart $cs_user['users_icq'] . '&img=22','16','15');
  if(
in_array('users_icq',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['icq'] = empty($cs_user['users_icq']) ? '--' $content;

  
$cs_user['users_msn'] = cs_secure($cs_user['users_msn']);
#  $content = cs_html_link('http://members.msn.com/' . $cs_user['users_msn'],$cs_user['users_msn']);
  
$content cs_html_msnmail($cs_user['users_msn']);
  if(
in_array('users_msn',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['msn'] = empty($cs_user['users_msn']) ? '--' $content;

  
$cs_user['users_skype'] = cs_secure($cs_user['users_skype']);
  
$content cs_html_link('skype:' $cs_user['users_skype'] . '?userinfo'$cs_user['users_skype']);
  
$skype_url 'http://mystatus.skype.com/smallicon/' $cs_user['users_skype'];
  
$content .= ' ' cs_html_img($skype_url,'16','16');
  if(
in_array('users_skype',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['skype'] = empty($cs_user['users_skype']) ? '--' $content;

  
$content cs_secure($cs_user['users_phone']);
  if(
in_array('users_phone',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['phone'] = empty($cs_user['users_phone']) ? '--' $content;

  
$content cs_secure($cs_user['users_mobile']);
  if(
in_array('users_mobile',$hidden)) {
    
$content = empty($allow) ? '--' cs_html_italic(1) . $content cs_html_italic(0);
  }
  
$data['users']['mobile'] =  empty($cs_user['users_mobile']) ? '--' $content;

  
$data['users']['info'] = empty($cs_user['users_info']) ? ' ' cs_secure($cs_user['users_info'],1,1);

  
/* Users View Update */
/*  $users_view['users_view'] = $cs_user['users_view'] + 1;
  $users_cells = array_keys($users_view);
  $users_save = array_values($users_view);
  cs_sql_update(__FILE__,'users',$users_cells,$users_save,$cs_user['users_id']);
  $data['users']['view'] = $users_view['users_view'];*/

  
echo cs_subtemplate(__FILE__,$data,'users','view');
}




Habe die neuste Version drauf


------------------
Gruß

Mazzo

Zuletzt editiert von gamermazzo am 15.05.2010 um 21:19 Uhr (2x Editiert)
Inaktiv
|
Jam2 ClanSphere Team


Highlander





Beiträge: 3291
# Antwort: 8 - 15.05.2010 um 21:29 Uhr
15.05.2010 um 21:15 Uhr - Jam2:

2. Wurde was an der system/output/xhtml_10.php geändert?


und diese datei mal posten auch wenn nicht


------------------
Gruß/ Best regards
Jam2

Nützliche Forumbeiträge/Codepastes: (Useful comments in our board / codepastes)
Template Switch for index.php
Board Navlist last posts

Edi: könnte man denn auch hier eine erweiterung einfügen?
Jam2: das web ist wie toyota.....
Edi: hö ?
Jam2: nichts ist unmöglich!


Inaktiv
|
gamermazzo
Thread-Ersteller


Going for pro




Beiträge: 450
# Antwort: 9 - 15.05.2010 um 21:33 Uhr
Normalerweise nicht
mehr... +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
1. / 2. / ... 
<?php
// ClanSphere 2006 - www.clansphere.net
// $Id: xhtml_10.php 277 2006-08-28 19:06:48Z hajo $

function cs_html_br($run) {

    
$var '';
    while(
$run) {
        
$var .= '<br />';
        
$run--;
    }
    return 
$var "\n";
}

function 
cs_html_hr($width) {

    return 
"<hr style=\"width:" $width "\" noshade=\"noshade\" />\n";
}

function 
cs_html_table($func,$class 0,$spacing 0,$width 0) {

    if(empty(
$func)) {
        return 
"</table>\n";
    }
    else {
        
$var "\n<table ";
    if(!empty(
$class)) {
        
$var .= "class=\"" $class "\" ";
    }
    if(!empty(
$width) OR $func == 1) {
            global 
$cs_main;
            
$width2 = empty($width) ? $cs_main['def_width'] : $width;
            
$var .= "style=\"width:" $width2 "\" ";
        }
        
$var .= "cellpadding=\"0\" cellspacing=\"" $spacing "\">\n";
      return 
$var;
  }
}

function 
cs_html_roco($func,$class 0,$rowspan 0,$colspan 0$width 0$height 0) {

    if(empty(
$func)) {
        return 
"\n </td></tr>";
    }
    else {
        if(
$func>=2) {
            
$var "</td><td";
        }
        else {
            
$var "<tr><td";
        }
        if(!empty(
$class)) {
            
$var .= " class=\"" $class "\"";
        }
        if(!empty(
$colspan)) {
            
$var .= " colspan=\"" $colspan "\"";
        }
        if(!empty(
$rowspan)) {
            
$var .= " rowspan=\"" $rowspan "\"";
        }
    if(!empty(
$width)) {
            
$var .= " style=\"width:" $width "\"";
        }
        if(!empty(
$height)) {
            
$var .= " style=\"height:" $height "\"";
        }
        return 
$var ">\n";
    }
}

function 
cs_html_img($url,$height 0,$width 0,$more 0$alt '') {

  
$var "<img src=\"" $url "\" ";
  if(!empty(
$height) AND !empty($width)) {
    
$var .= "style=\"height:" $height 'px;width:' $width "px\" ";
  }
  if(!empty(
$more)) {
    
$var .= $more ' ';
  }
  return 
$var "alt=\"" $alt "\" />";
}

function 
cs_html_mail($mail,$link) {

    return 
"<a href=\"mailto:" $mail "\">" $link "</a>";
}

function 
cs_html_link($url,$link,$use_target 1,$class 0$title 0) {

    static 
$target 0;
    
$var "<a href=\"" $url "\"";
  if(!empty(
$use_target)) {
      
$target++;
    
$var .= " target=\"cs" $target "\"";
  }
    if(!empty(
$class)) {
        
$var .= " class=\"" $class "\"";
    }
    if(!empty(
$title)) {
        
$var .= " title=\"" $title "\"";
    }
  return 
$var '>' $link '</a>';
}

function 
cs_html_anchor($name$text ''$more '') {

    return 
"<a href=\"#\" name=\"" $name "\"" $more ">" $text "</a>";
}

function 
cs_html_form($func,$name 0,$mod 0,$action 0,$enctype 0) {

    if(!empty(
$func)) {
        
$target "?mod=" $mod "&action=" $action;
        
$form "<form method=\"post\" name=\"" $name "\" ";
        
$form .= "action=\"" $_SERVER['PHP_SELF'] . $target "\"";
      if(!empty(
$enctype)) {
       
$form .= " enctype=\"multipart/form-data\"";
    }
    return 
$form ">\n";
  }
    else {
        return 
"</form>\n";
    }
}

function 
cs_html_input($name,$value,$type,$max 0,$size 0,$more 0,$class 'form') {

    
$value htmlspecialchars($value);
    
$var "\n <input type=\"" $type "\" name=\"" $name "\" value=\"" $value "\" ";
    if(!empty(
$more)) {
        
$var .= $more ' ';
    }
  if(!empty(
$max)) {
        
$var .= "maxlength=\"" $max "\" ";
    }
    if(!empty(
$size)) {
        
$var .= "size=\"" $size "\" ";
    }
    if(!empty(
$class)) {
        
$var .= "class=\"" $class "\" ";
    }
  return 
$var '/>';
}

function 
cs_html_vote($name,$value,$type,$check 0,$more 0,$class 'form') {

    
$var "\n <input type=\"" $type "\" name=\"" $name "\" value=\"" $value "\"";
  if(!empty(
$more)) {
    
$var .= ' ' $more;
  }
  if(!empty(
$check)) {
        
$var .= " checked=\"checked\"";
    }
    if(!empty(
$class)) {
        
$var .= " class=\"" $class "\"";
    }
  return 
$var '/>';
}

function 
cs_html_textarea($name,$value,$cols,$rows,$readonly 0) {

    
$var "<textarea name=\"" $name "\" cols=\"" $cols "\" rows=\"" $rows "\" ";
    if(!empty(
$readonly)) {
        
$var .= "readonly=\"readonly\" ";
    }
    
$var .= "id=\"" $name "\" class=\"form\">" htmlspecialchars($value) . "</textarea>\n";
  return 
$var;
}

function 
cs_html_select($func,$name '',$more 0) {

    if(!empty(
$func)) {
        
$var "<select name=\"" $name "\" class=\"form\"";
    if(!empty(
$more)) {
      
$var .= ' ' $more;
    }
    return 
$var ">\n";
    }
    else {
        return 
"</select>\n";
    }
}

function 
cs_html_option($name,$value,$select 0,$style 0) {

    
$value htmlspecialchars($value);
    
$var "<option value=\"" $value "\"";
    if(!empty(
$style)) {
        
$var .= " style=\"" $style "\"";
    }
  if(!empty(
$select)) {
        
$var .= " selected=\"selected\"";
    }
    return 
$var '>' $name "</option>\n";
}

function 
cs_html_underline($func) {

  
$func==$var '<u>' $var '</u>';
  return 
$var;
}

function 
cs_html_big($func) {

  
$func==$var '<strong>' $var '</strong>';
  return 
$var;
}

function 
cs_html_italic($func) {

  
$func==$var '<em>' $var '</em>';
  return 
$var;
}

function 
cs_html_list($string,$style 0,$element '[*]') {

    
$var str_replace($element,'<li>',$string);
    
$var = empty($style) ? '<ul>' $var '</ul>' '<ol>' $var '</ol>';
  return 
$var;
}

function 
cs_html_div($func,$style 0,$more 0) {

  if(
$func==1) {
    
$var '<div';
    if(!empty(
$style)) {
      
$var .= " style=\"" $style "\"";
    }
    if(!empty(
$more)) {
      
$var .= ' ' $more;
    }
    return 
$var ">";
  }
  else {
    return 
"</div>";
  }
}

function 
cs_html_span($func,$style 0,$more 0) {

  if(
$func==1) {
    
$var '<span';
    if(!empty(
$style)) {
      
$var .= " style=\"" $style "\"";
    }
    if(!empty(
$more)) {
      
$var .= ' ' $more;
    }
    return 
$var ">";
  }
  else {
    return 
"</span>";
  }
}

?>


------------------
Gruß

Mazzo

Inaktiv
|
Jam2 ClanSphere Team


Highlander





Beiträge: 3291
# Antwort: 10 - 15.05.2010 um 21:40 Uhr
// ClanSphere 2006 - www.clansphere.net
// $Id: xhtml_10.php 277 2006-08-28 19:06:48Z hajo $

ähh ja...

neuhochladen der xhtml_10.php und xhtml_10_old.php
+ bei dir wahrscheinlich
http://wiki.clansphere.de/ClanSphere_Update_2008_2009#Module_ohne_Themes_Support _ab_200902


------------------
Gruß/ Best regards
Jam2

Nützliche Forumbeiträge/Codepastes: (Useful comments in our board / codepastes)
Template Switch for index.php
Board Navlist last posts

Edi: könnte man denn auch hier eine erweiterung einfügen?
Jam2: das web ist wie toyota.....
Edi: hö ?
Jam2: nichts ist unmöglich!


Inaktiv
|
gamermazzo
Thread-Ersteller


Going for pro




Beiträge: 450
# Antwort: 11 - 15.05.2010 um 22:13 Uhr
Vielen Dank hat hingehauen ^^ thx


------------------
Gruß

Mazzo

Zuletzt editiert von gamermazzo am 15.05.2010 um 22:15 Uhr (1x Editiert)
Inaktiv
|

Dieses Thema wurde von Jam2 ClanSphere Team PM geschlossen.

Antworten: 11
Seite [1]