• » webSPELL.org - Free Content Management System
  • Language switch: English German
  • login



    » lost password?   » register now
  • About webSPELL

    webSPELL is a free Content Management System which was especially developed for the needs of esport related communities. Since a short while we are also offering an optimized and enhanced webSPELL version for the special requirements of non-profit organisations. The purpose of both systems is to offer a professional and free opportunity to create and administrate your own website in an easy and optimized way.

    » Learn more about webSPELL     » Download webSPELL now!
  • Advertisement

    Follow us

  • Sort:      1 2  » printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
    Author
    Message
    webSPELL newbie
    11 Posts
    28.05.2012, 20:22 offline quote 

    I have exact the same problem ... how it have been fixed? How can I fix it?

    Habe genau das gleiche Problem, leider wurde nicht geschrieben wie es behoben wurde.

    Weis einer wie ich das lösen kann?

    Habe schon in der sql "videos" den Standart auf "2" gesetzt ... jetzt wird der Comment wenigstens dargestellt. Es kommt aber immer noch diese Fehler-Meldung zwischendurch. Was kann ich machen?

    www.mastersofdisasters.eu

    WS 4.2.3a
    webSPELL newbie
    90 Posts
    13.01.2011, 20:09 offline quote 

    Ty to my friend Steve he fix it for my TY STEVE LOVE YOU
    webSPELL newbie
    39 Posts
    13.01.2011, 17:40 email offline quote 

    EDITED
    webSPELL newbie
    90 Posts
    webSPELL friend
    674 Posts
    13.01.2011, 17:03 email offline quote 

    what movie addon are you using?

    www.kode-designs.com
    How much wood would a woodchuck chuck if a woodchuck could chuck wood?
    webSPELL newbie
    90 Posts
    13.01.2011, 16:08 offline quote 

    oke
    done now says

    Code:
    1.
    2.
    3.
    4.
    Query failed: 
    errorno=1064
    error=You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM ws_Umf_ WHERE ='4'' at line 1
    query=SELECT FROM ws_Umf_ WHERE ='4'


    http://q7-gaming.eu/comments.php
    webSPELL user
    101 Posts
    13.01.2011, 15:42 email offline quote 

    Hello,

    I believe you need to replace

    Code:
    1.
    $moduls['mo'] = array("videos","vidID","comments");


    With:

    Code:
    1.
    $moduls['vi'] = array("videos","vidID","comments");


    ? Try it. amüsiert

    veni viddi....BANG.
    webSPELL newbie
    90 Posts
    13.01.2011, 11:23 offline quote 

    www.q7-gaming.eu

    http://q7-gaming.eu/in...mp;action=detail&id=3

    <?php
    /*
    ##########################################################################
    # #
    # Version 4 / / / #
    # -----------__---/__---__------__----__---/---/- #
    # | /| / /___) / ) (_ ` / ) /___) / / #
    # _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___ #
    # Free Content / Management System #
    # / #
    # #
    # #
    # Copyright 2005-2009 by webspell.org #
    # #
    # visit webSPELL.org, webspell.info to get webSPELL for free #
    # - Script runs under the GNU GENERAL PUBLIC LICENSE #
    # - It's NOT allowed to remove this copyright-tag #
    # -- http://www.fsf.org/licensing/licenses/gpl.html #
    # #
    # Code based on WebSPELL Clanpackage (Michael Gruber - webspell.at), #
    # Far Development by Development Team - webspell.org #
    # #
    # visit webspell.org #
    # #
    ##########################################################################
    */
    $bg1 = BG_1;
    function checkCommentsAllow($type, $parentID){
    global $userID;
    $moduls = array();
    $moduls['ne'] = array("news","newsID","comments");
    $moduls['ar'] = array("articles","articlesID","comments");
    $moduls['ga'] = array("gallery_pictures","picID","comments");
    $moduls['cw'] = array("clanwars","cwID","comments");
    $moduls['de'] = array("demos","demoID","comments");
    $moduls['po'] = array("poll","pollID","comments");
    $moduls['mo'] = array("videos","vidID","comments");
    $allowed = 0;
    $modul = $moduls[$type];
    $get = safe_query("SELECT ".$modul[2]." FROM ".PREFIX.$modul[0]." WHERE ".$modul[1]."='".$parentID."'");
    if(mysql_num_rows($get)){
    $data = mysql_fetch_assoc($get);
    switch($data[$modul[2]]){
    case 0: $allowed = 0; break;
    case 1: if($userID) $allowed = 1; break;
    case 2: $allowed = 1; break;
    default: $allowed=0;
    }
    }
    return $allowed;
    }
    if(isset($_POST['savevisitorcomment'])) {
    include("_mysql.php");
    include("_settings.php");
    include("_functions.php");

    $name = $_POST['name'];
    $mail = $_POST['mail'];
    $url = $_POST['url'];
    $parentID = (int)$_POST['parentID'];
    $type = $_POST['type'];
    $message = $_POST['message'];
    $ip = $_SERVER['REMOTE_ADDR'];
    $CAPCLASS = new Captcha;

    setcookie("visitor_info", $name."--||--".$mail."--||--".$url, time()+(3600*24*365));
    $query = safe_query("SELECT nickname, username FROM ".PREFIX."user ORDER BY nickname");
    while($ds=mysql_fetch_array($query)) {
    $nicks[] = $ds['nickname'];
    $nicks[] = $ds['username'];
    }
    $_SESSION['comments_message'] = $message;

    if(in_array(trim($name), $nicks)) header("Location: ".$_POST['referer']."&error=nickname#addcomment");
    elseif(!($CAPCLASS->check_captcha($_POST['captcha'], $_POST['captcha_hash']))) header("Location: ".$_POST['referer']."&error=captcha#addcomment");
    elseif(checkCommentsAllow($type,$parentID) == false ) header("Location: ".$_POST['referer']);
    else {
    $date=time();
    safe_query("INSERT INTO ".PREFIX."comments ( parentID, type, nickname, date, comment, url, email, ip )
    values( '".$parentID."', '".$type."', '".$name."', '".$date."', '".$message."', '".$url."', '".$mail."', '".$ip."' ) ");
    unset($_SESSION['comments_message']);
    header("Location: ".$_POST['referer']);
    }
    }
    elseif(isset($_POST['saveusercomment'])) {
    include("_mysql.php");
    include("_settings.php");
    include("_functions.php");
    $_language->read_module('comments');
    if(!$userID) die($_language->module['access_denied']);

    $parentID = $_POST['parentID'];
    $type = $_POST['type'];
    $message = $_POST['message'];
    if(checkCommentsAllow($type,$parentID)){
    $date=time();
    safe_query("INSERT INTO ".PREFIX."comments ( parentID, type, userID, date, comment ) values( '".$parentID."', '".$type."', '".$userID."', '".$date."', '".$message."' ) ");
    }
    header("Location: ".$_POST['referer']);
    }
    elseif(isset($_GET['delete'])) {
    include("_mysql.php");
    include("_settings.php");
    include("_functions.php");
    $_language->read_module('comments');
    if(!isanyadmin($userID)) die($_language->module['access_denied']);
    foreach($_POST['commentID'] as $id) {
    safe_query("DELETE FROM ".PREFIX."comments WHERE commentID='".$id."'");
    }
    header("Location: ".$_POST['referer']);
    }
    elseif(isset($_GET['editcomment'])) {
    $id=$_GET['id'];
    $referer=$_GET['ref'];
    $_language->read_module('comments');
    $_language->read_module('bbcode', true);
    if(isfeedbackadmin($userID) or iscommentposter($userID,$id)) {
    if(!empty($id)) {
    $dt = safe_query("SELECT * FROM ".PREFIX."comments WHERE commentID='".$id."'");
    if(mysql_num_rows($dt)) {
    $ds = mysql_fetch_array($dt);
    $poster='<a href="index.php?site=profile&amp;id='.$ds['userID'].'"><b>'.getnickname($ds['userID']).'</b></a>';
    $message=getinput($ds['comment']);
    $message=preg_replace("#\n\[br\]\[br\]\
    \*\*(.+)#si", '', $message);
    $message=preg_replace("#\n\[br\]\[br\]\*\*(.+)#si", '', $message);

    eval ("\$addbbcode = \"".gettemplate("addbbcode")."\";");

    eval("\$comments_edit = \"".gettemplate("comments_edit")."\";");
    echo $comments_edit;
    }
    else {
    redirect($referer, $_language->module['no_database_entry'], 2);
    }
    }
    else {
    redirect($referer, $_language->module['no_commentid'], 2);
    }
    }
    else {
    redirect($referer, $_language->module['access_denied'], 2);
    }
    }
    elseif(isset($_POST['saveeditcomment'])) {
    include("_mysql.php");
    include("_settings.php");
    include("_functions.php");

    if(!isfeedbackadmin($userID) and !iscommentposter($userID,$_POST['commentID'])) die('No access');

    $message=$_POST['message'];
    $author=$_POST['authorID'];
    $referer=urldecode($_POST['referer']);

    // check if any admin edited the post
    if(safe_query("UPDATE ".PREFIX."comments SET comment='".$message."' WHERE commentID='".$_POST['commentID']."'")) {
    header("Location: ".$referer);
    }
    }
    else {

    $_language->read_module('comments');
    $_language->read_module('bbcode', true);

    if(isset($_GET['commentspage'])) $commentspage = (int)$_GET['commentspage'];
    else $commentspage = 1;
    if(isset($_GET['sorttype']) AND strtoupper($_GET['sorttype']=="ASC")) $sorttype = 'ASC';
    else $sorttype='DESC';

    if(!isset($parentID) AND isset($_GET['parentID'])) $parentID = (int)$_GET['parentID'];
    if(!isset($type) AND isset($_GET['type'])) $type = mb_substr($_GET['type'], 0, 2);

    $alle=safe_query("SELECT commentID FROM ".PREFIX."comments WHERE parentID='$parentID' AND type='$type'");
    $gesamt=mysql_num_rows($alle);
    $commentspages=ceil($gesamt/$maxfeedback);

    if($commentspages>1) $page_link = makepagelink("$referer&amp;sorttype=$sorttype", $commentspage, $commentspages, 'comments');
    else $page_link='';

    if ($commentspage == "1") {
    $ergebnis = safe_query("SELECT * FROM ".PREFIX."comments WHERE parentID='$parentID' AND type='$type' ORDER BY date $sorttype LIMIT 0,$maxfeedback");
    if($sorttype=="DESC") $n=$gesamt;
    else $n=1;
    } else {
    $start=($commentspage-1)*$maxfeedback;
    $ergebnis = safe_query("SELECT * FROM ".PREFIX."comments WHERE parentID='$parentID' AND type='$type' ORDER BY date $sorttype LIMIT $start,$maxfeedback");
    if($sorttype=="DESC") $n = $gesamt-($commentspage-1)*$maxfeedback;
    else $n = ($commentspage-1)*$maxfeedback+1;
    }
    if($gesamt) {

    eval ("\$title_comments = \"".gettemplate("title_comments")."\";");
    echo $title_comments;

    if($sorttype=="ASC") {
    $sorter='<a href="'.$referer.'&amp;commentspage='.$commentspage.'&amp;sorttype=DESC">'.$_language->module['sort'].'</a> <img src="images/icons/asc.gif" width="9" height="7" border="0" alt="'.$_language->module['sort_desc'].'" />&nbsp;&nbsp;&nbsp;';
    } else {
    $sorter='<a href="'.$referer.'&amp;commentspage='.$commentspage.'&amp;sorttype=ASC">'.$_language->module['sort'].'</a> <img src="images/icons/desc.gif" width="9" height="7" border="0" alt="'.$_language->module['sort_asc'].'" />&nbsp;&nbsp;&nbsp;';
    }

    eval ("\$comments_head = \"".gettemplate("comments_head")."\";");
    echo $comments_head;

    while($ds=mysql_fetch_array($ergebnis)) {
    $n%2 ? $bg1=BG_1 : $bg1=BG_3;

    $date=date("d.m.Y - H:i", $ds['date']);

    if($ds['userID']) {
    $ip='';
    $poster='<a class="titlelink" href="index.php?site=profile&amp;id='.$ds['userID'].'"><b>'.strip_tags(getnickname($ds['userID'])).'</b></a>';
    if(isclanmember($ds['userID'])) $member=$_language->module['clanmember_icon'];
    else $member='';

    $quotemessage = addslashes(getinput($ds['comment']));
    $quotemessage = str_replace(array("\r\n","\r","\n"),array('\r\n','\r','\n'),$quotemessage);
    $quotenickname = addslashes(getinput(getnickname($ds['userID'])));
    $quote=str_replace(Array('%nickname%', '%message%'), Array($quotenickname, $quotemessage), $_language->module['quote_link']);

    $country=''.getcountry($ds['userID']).'';
    $country=flags($country);

    if ($email = getemail($ds['userID']) AND !getemailhide($ds['userID'])) $email = str_replace('%email%', mail_protect($email), $_language->module['email_link']);
    else $email='';
    $gethomepage = gethomepage($ds['userID']);
    if ($gethomepage != "" && $gethomepage != "http://" && $gethomepage != "http:///" && $gethomepage != "n/a") $hp = '<a href="http://'.$gethomepage.'" target="_blank"><img src="images/icons/hp.gif" border="0" width="14" height="14" alt="'.$_language->module['homepage'].'" /></a>';
    else $hp='';

    if(isonline($ds['userID'])=="offline") $statuspic='<img src="images/icons/offline.gif" width="7" height="7" alt="offline" />';
    else $statuspic='<img src="images/icons/online.gif" width="7" height="7" alt="online" />';

    $avatar='<img src="images/avatars/'.getavatar($ds['userID']).'" align="left" alt="Avatar" />';

    if($loggedin && $ds['userID'] != $userID) {
    $pm='<a href="index.php?site=messenger&amp;action=touser&amp;touser='.$ds['userID'].'"><img src="images/icons/pm.gif" border="0" width="12" height="13" alt="'.$_language->module['send_message'].'" /></a>';
    if(isignored($userID, $ds['userID'])) $buddy='<a href="buddys.php?action=readd&amp;id='.$ds['userID'].'&amp;userID='.$userID.'"><img src="images/icons/buddy_readd.gif" width="16" height="16" border="0" alt="'.$_language->module['readd_buddy'].'" /></a>';
    elseif(isbuddy($userID, $ds['userID'])) $buddy='<a href="buddys.php?action=ignore&amp;id='.$ds['userID'].'&amp;userID='.$userID.'"><img src="images/icons/buddy_ignore.gif" width="16" height="16" border="0" alt="'.$_language->module['ignore_user'].'" /></a>';
    elseif($userID==$ds['userID']) $buddy='';
    else $buddy='<a href="buddys.php?action=add&amp;id='.$ds['userID'].'&amp;userID='.$userID.'"><img src="images/icons/buddy_add.gif" width="16" height="16" border="0" alt="'.$_language->module['add_buddy'].'" /></a>';
    } else {
    $pm='';
    $buddy='';
    }
    }
    else {
    $member='';
    $avatar='<img src="images/avatars/noavatar.gif" align="left" alt="Avatar" />';
    $country='';
    $pm='';
    $buddy='';
    $statuspic='';
    $ds['nickname'] = strip_tags($ds['nickname']);
    $ds['nickname'] = htmlspecialchars($ds['nickname']);
    $poster = strip_tags($ds['nickname']);

    $ds['email'] = strip_tags($ds['email']);
    $ds['email'] = htmlspecialchars($ds['email']);
    if($ds['email']) $email = str_replace('%email%', mail_protect($ds['email']), $_language->module['email_link']);
    else $email='';

    $ds['url'] = strip_tags($ds['url']);
    $ds['url'] = htmlspecialchars($ds['url']);
    if(!stristr($ds['url'],'http://')) $ds['url'] = "http://".$ds['url'];
    if($ds['url']!="http://" && $ds['url']!="") $hp = '<a href="'.$ds['url'].'" target="_blank"><img src="images/icons/hp.gif" border="0" width="14" height="14" alt="'.$_language->module['homepage'].'" /></a>';
    else $hp='';
    $ip = 'IP: ';
    if(isfeedbackadmin($userID)) $ip.=$ds['ip'];
    else $ip.='saved';

    $quotemessage = addslashes(getinput($ds['comment']));
    $quotenickname = addslashes(getinput($ds['nickname']));
    $quote=str_replace(Array('%nickname%', '%message%'), Array($quotenickname, $quotemessage), $_language->module['quote_link']);
    }

    $content = cleartext($ds['comment']);
    $content = toggle($content, $ds['commentID']);

    if(isfeedbackadmin($userID) or iscommentposter($userID,$ds['commentID'])) {
    $edit = '<a href="index.php?site=comments&amp;editcomment=true&amp;id='.$ds['commentID'].'&amp;ref='.urlencode($referer).'" title="'.$_language->module['edit_comment'].'"><img src="images/icons/edit.gif" border="0" alt="'.$_language->module['edit_comment'].'" /></a>';
    } else $edit='';

    if(isfeedbackadmin($userID)) $actions='<input class="input" type="checkbox" name="commentID[]" value="'.$ds['commentID'].'" />';
    else $actions='';

    eval ("\$comments = \"".gettemplate("comments")."\";");
    echo $comments;

    unset($member);
    unset($quote);
    unset($country);
    unset($email);
    unset($hp);
    unset($avatar);
    unset($pm);
    unset($buddy);
    unset($ip);
    unset($edit);

    if(isfeedbackadmin($userID)) {
    $submit='<input type="hidden" name="referer" value="'.$referer.'" />
    <input class="input" type="checkbox" name="ALL" value="ALL" onclick="SelectAll(this.form);" /> '.$_language->module['select_all'].'
    <input type="submit" value="'.$_language->module['delete_selected'].'" />';
    } else $submit='';

    if($sorttype=="DESC") $n--;
    else $n++;
    }

    eval ("\$comments_foot = \"".gettemplate("comments_foot")."\";");
    echo $comments_foot;

    }

    if($comments_allowed) {
    if($loggedin) {

    eval ("\$addbbcode = \"".gettemplate("addbbcode")."\";");
    eval ("\$comments_add_user = \"".gettemplate("comments_add_user")."\";");
    echo $comments_add_user;
    }
    elseif($comments_allowed == 2) {

    $ip = getenv('REMOTE_ADDR');

    if (isset($_COOKIE['visitor_info'])) {
    $visitor = explode("--||--", $_COOKIE['visitor_info']);
    $name = getforminput(stripslashes($visitor[0]));
    $mail = getforminput(stripslashes($visitor[1]));
    $url = getforminput(stripslashes($visitor[2]));
    }
    else{
    $url = "http://";
    $name = "";
    $mail = "";
    }

    if(isset($_GET['error'])) $err = $_GET['error'];
    else $err = "";
    if($err=="nickname"){
    $error = $_language->module['error_nickname'];
    $name = "";
    }
    elseif($err=="captcha") $error = $_language->module['error_captcha'];
    else $error = '';

    if(isset($_SESSION['comments_message'])){
    $message = getforminput($_SESSION['comments_message']);
    unset($_SESSION['comments_message']);
    }
    else{
    $message = "";
    }

    $CAPCLASS = new Captcha;
    $captcha = $CAPCLASS->create_captcha();
    $hash = $CAPCLASS->get_hash();
    $CAPCLASS->clear_oldcaptcha();

    eval ("\$addbbcode = \"".gettemplate("addbbcode")."\";");
    eval ("\$comments_add_visitor = \"".gettemplate("comments_add_visitor")."\";");
    echo $comments_add_visitor;
    }
    else echo $_language->module['no_access'];
    }
    else echo $_language->module['comments_disabled'];
    }

    ?>
    webSPELL newbie
    72 Posts
    13.01.2011, 10:13 email offline quote 

    I can`t toggle you comments.php
    Please post it on a nopaste website. (eg.: nopaste.info)

    gez. Steve Mitchell
    webSPELL newbie
    90 Posts
    13.01.2011, 10:01 offline quote 

    Code:
    1.
    2.
    3.
    4.
    Query failed: 
    errorno=1064
    error=You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
    query=SELECT * FROM ws_Umf_videos_portals WHERE id=



    SITE:http://q7-gaming.eu/in...mp;action=detail&id=1 :pss dont cry for COPYRIGHT is coming zwinkern

    read more comments.php

    Sort:      1 2  » printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
  • » Support

    » Topics
    22.05.2013 - 17:46 - 3 Replies
    » Admin login
    Admin login
    Last post: blackmoonstah
    Board: DE - Allgemeiner Support
    22.05.2013 - 17:46
    22.05.2013 - 17:28 - 1 Replies
    » Design Ausverkauf - alles...
    Design Ausverkauf - alles unter 70€
    Last post: Freestyler92
    Board: DE - Biete
    22.05.2013 - 17:28
    22.05.2013 - 15:28 - 2 Replies
    » Slider Links Bitte um Hil...
    Slider Links Bitte um Hilfe
    Last post: LethalTrade2013
    Board: DE - Allgemein
    22.05.2013 - 15:28
    22.05.2013 - 14:54 - 2 Replies
    » adminlogin auf allypage f...
    adminlogin auf allypage funktioniert nicht mehr. bitte um hilfe
    Last post: blackmoonstah
    Board: DE - Technischer Support
    22.05.2013 - 14:54
    22.05.2013 - 14:41 - 4 Replies
    » Content laden
    Content laden
    Last post: bazic
    Board: DE - Anfragen
    22.05.2013 - 14:41
    22.05.2013 - 09:57 - 0 Replies
    » [4SALE] eSport Design/Tem...
    [4SALE] eSport Design/Template
    Last post: LeG3nDz
    Board: EN - Offers
    22.05.2013 - 09:57
    22.05.2013 - 09:24 - 1 Replies
    » Updatefunktion?
    Updatefunktion?
    Last post: Sysix
    Board: DE - Vorschläge
    22.05.2013 - 09:24
    22.05.2013 - 00:47 - 5 Replies
    » msql datenbank transfer
    msql datenbank transfer
    Last post: pgene
    Board: DE - Technischer Support
    22.05.2013 - 00:47
    22.05.2013 - 00:03 - 9 Replies
    » Mein Forum
    Mein Forum
    Last post: Lordy4007
    Board: DE - Fragen zur Seite
    22.05.2013 - 00:03
    21.05.2013 - 22:43 - 5 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: Swordfish3000
    Board: DE - Allgemeiner Support
    21.05.2013 - 22:43
    21.05.2013 - 20:12 - 3 Replies
    » When the update?
    When the update?
    Last post: Argu
    Board: EN - General
    21.05.2013 - 20:12
    21.05.2013 - 19:43 - 9 Replies
    » login startseite
    login startseite
    Last post: Argu
    Board: DE - Technischer Support
    21.05.2013 - 19:43
    21.05.2013 - 13:18 - 7 Replies
    » [Biete] Template Designs
    [Biete] Template Designs
    Last post: Marceld
    Board: DE - Biete
    21.05.2013 - 13:18
    21.05.2013 - 05:15 - 0 Replies
    » Need Designer for Logo/Te...
    Need Designer for Logo/Template
    Last post: Kody
    Board: EN - General
    21.05.2013 - 05:15
    21.05.2013 - 05:13 - 0 Replies
    » Looking for Designers/Cod...
    Looking for Designers/Coders (paid)
    Last post: Kody
    Board: EN - Requests
    21.05.2013 - 05:13
    20.05.2013 - 21:11 - 12 Replies
    » High Quality Website
    High Quality Website
    Last post: Dansjostedt
    Board: EN - Offers
    20.05.2013 - 21:11
    20.05.2013 - 18:27 - 4 Replies
    » [S] Tester für neuen Foru...
    [S] Tester für neuen ForumMod
    Last post: Argu
    Board: DE - Anfragen
    20.05.2013 - 18:27
    20.05.2013 - 11:47 - 5 Replies
    » Suche Designer GGL:Geld
    Suche Designer GGL:Geld
    Last post: Dynamic-Webmedia
    Board: DE - Suche
    20.05.2013 - 11:47
    20.05.2013 - 00:07 - 0 Replies
    » [S] Suche Programmierer
    [S] Suche Programmierer
    Last post: phoenix762
    Board: DE - Suche
    20.05.2013 - 00:07
    18.05.2013 - 19:58 - 36 Replies
    » Exklusiv Webseite zur Mie...
    Exklusiv Webseite zur Miete
    Last post: liQweb
    Board: DE - Biete
    18.05.2013 - 19:58
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers