Woord censuur werkt niet

Installatie lukt niet? Plotseling een foutmelding. Of weet je niet hoe iets werkt. Problemen met phpBB2 kun je in dit archief opzoeken.
Forumregels

Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
phpBB2.0.x
Gesloten
chupkes
Berichten: 10
Lid geworden op: 26 nov 2005, 12:08

Woord censuur werkt niet

Bericht door chupkes » 06 dec 2006, 09:37

Support Template
  • Wat is het probleem? Ik kan geen woorden meer toevoegen aan Woord Censuur.
    Wanneer ontstond het probleem? 4 dagen geleden
    Adres van je forum: Privé
    Modifications op je forum: Geen
    Huidige stijl: xand (standaard, er staan er meerdere op)
    phpBB versie: 2.0.21
    Waar is je forum gehost: privé
    Heb je onlangs iets verandert aan je forum? Ja, nieuwe stijlen.
Overige opmerkingen: Screenshot:
Afbeelding
Laatst gewijzigd door chupkes op 10 dec 2006, 18:37, 2 keer totaal gewijzigd.

Coen
Berichten: 5387
Lid geworden op: 03 aug 2004, 10:25

Bericht door Coen » 06 dec 2006, 09:50

Krijg je een foutmelding of iets dergelijks? Hier kunnen wij ook vrij weinig mee.. :roll:

chupkes
Berichten: 10
Lid geworden op: 26 nov 2005, 12:08

Bericht door chupkes » 06 dec 2006, 14:37

nope, helemaal niets. er zit gewoon geen knop met ''toevoegen'' meer.
edit:sorry, was vergeten screenshot neer te zetten :P

chupkes
Berichten: 10
Lid geworden op: 26 nov 2005, 12:08

Bericht door chupkes » 10 dec 2006, 18:37

is er dan niemand die weet wat er fout kan zijn :shock:

Supporter
Berichten: 103
Lid geworden op: 10 dec 2006, 17:55
Locatie: THe NL Berichten: 18213

Bericht door Supporter » 10 dec 2006, 20:16

Wat wil je censuren ?

En post "admin_words.php", wel in een TXT file.

svenn
Berichten: 5001
Lid geworden op: 14 jul 2004, 13:00
Locatie: Kortrijk
Contacteer:

Bericht door svenn » 10 dec 2006, 20:34

Neen het probleem ligt stukken eenvoudigger maar eerst wil ik graag weten wat je site is. Je kunt die hier posten of per pm zenden. We willen toch dat iedereen de regels naleefd ;)

chupkes
Berichten: 10
Lid geworden op: 26 nov 2005, 12:08

Bericht door chupkes » 10 dec 2006, 20:34

bepaalde ziektes ed ;)

Admin_words.php:
<?php
/***************************************************************************
* admin_words.php
* -------------------
* begin : Thursday, Jul 12, 2001
* copyright : (C) 2001 The phpBB Group
* email : support@phpbb.com
*
* $Id: admin_words.php,v 1.10.2.6 2006/04/13 09:56:48 grahamje Exp $
*
*
***************************************************************************/

/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/

if( !empty($setmodules) )
{
$file = basename(__FILE__);
$module['General']['Word_Censor'] = $file;
return;
}

define('IN_PHPBB', 1);

//
// Load default header
//
$phpbb_root_path = "./../";
require($phpbb_root_path . 'extension.inc');

$cancel = ( isset($HTTP_POST_VARS['cancel']) ) ? true : false;
$no_page_header = $cancel;

require('./pagestart.' . $phpEx);

if ($cancel)
{
redirect('admin/' . append_sid("admin_words.$phpEx", true));
}

if( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
{
$mode = (isset($HTTP_GET_VARS['mode'])) ? $HTTP_GET_VARS['mode'] : $HTTP_POST_VARS['mode'];
$mode = htmlspecialchars($mode);
}
else
{
//
// These could be entered via a form button
//
if( isset($HTTP_POST_VARS['add']) )
{
$mode = "add";
}
else if( isset($HTTP_POST_VARS['save']) )
{
$mode = "save";
}
else
{
$mode = "";
}
}

// Restrict mode input to valid options
$mode = ( in_array($mode, array('add', 'edit', 'save', 'delete')) ) ? $mode : '';

if( $mode != "" )
{
if( $mode == "edit" || $mode == "add" )
{
$word_id = ( isset($HTTP_GET_VARS['id']) ) ? intval($HTTP_GET_VARS['id']) : 0;

$template->set_filenames(array(
"body" => "admin/words_edit_body.tpl")
);

$word_info = array('word' => '', 'replacement' => '');
$s_hidden_fields = '';

if( $mode == "edit" )
{
if( $word_id )
{
$sql = "SELECT *
FROM " . WORDS_TABLE . "
WHERE word_id = $word_id";
if(!$result = $db->sql_query($sql))
{
message_die(GENERAL_ERROR, "Could not query words table", "Error", __LINE__, __FILE__, $sql);
}

$word_info = $db->sql_fetchrow($result);
$s_hidden_fields .= '<input type="hidden" name="id" value="' . $word_id . '" />';
}
else
{
message_die(GENERAL_MESSAGE, $lang['No_word_selected']);
}
}

$template->assign_vars(array(
"WORD" => $word_info['word'],
"REPLACEMENT" => $word_info['replacement'],

"L_WORDS_TITLE" => $lang['Words_title'],
"L_WORDS_TEXT" => $lang['Words_explain'],
"L_WORD_CENSOR" => $lang['Edit_word_censor'],
"L_WORD" => $lang['Word'],
"L_REPLACEMENT" => $lang['Replacement'],
"L_SUBMIT" => $lang['Submit'],

"S_WORDS_ACTION" => append_sid("admin_words.$phpEx"),
"S_HIDDEN_FIELDS" => $s_hidden_fields)
);

$template->pparse("body");

include('./page_footer_admin.'.$phpEx);
}
else if( $mode == "save" )
{
$word_id = ( isset($HTTP_POST_VARS['id']) ) ? intval($HTTP_POST_VARS['id']) : 0;
$word = ( isset($HTTP_POST_VARS['word']) ) ? trim($HTTP_POST_VARS['word']) : "";
$replacement = ( isset($HTTP_POST_VARS['replacement']) ) ? trim($HTTP_POST_VARS['replacement']) : "";

if($word == "" || $replacement == "")
{
message_die(GENERAL_MESSAGE, $lang['Must_enter_word']);
}

if( $word_id )
{
$sql = "UPDATE " . WORDS_TABLE . "
SET word = '" . str_replace("\'", "''", $word) . "', replacement = '" . str_replace("\'", "''", $replacement) . "'
WHERE word_id = $word_id";
$message = $lang['Word_updated'];
}
else
{
$sql = "INSERT INTO " . WORDS_TABLE . " (word, replacement)
VALUES ('" . str_replace("\'", "''", $word) . "', '" . str_replace("\'", "''", $replacement) . "')";
$message = $lang['Word_added'];
}

if(!$result = $db->sql_query($sql))
{
message_die(GENERAL_ERROR, "Could not insert data into words table", $lang['Error'], __LINE__, __FILE__, $sql);
}

$message .= "<br /><br />" . sprintf($lang['Click_return_wordadmin'], "<a href=\"" . append_sid("admin_words.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . append_sid("index.$phpEx?pane=right") . "\">", "</a>");

message_die(GENERAL_MESSAGE, $message);
}
else if( $mode == "delete" )
{
if( isset($HTTP_POST_VARS['id']) || isset($HTTP_GET_VARS['id']) )
{
$word_id = ( isset($HTTP_POST_VARS['id']) ) ? $HTTP_POST_VARS['id'] : $HTTP_GET_VARS['id'];
$word_id = intval($word_id);
}
else
{
$word_id = 0;
}

$confirm = isset($HTTP_POST_VARS['confirm']);

if( $word_id && $confirm )
{
$sql = "DELETE FROM " . WORDS_TABLE . "
WHERE word_id = $word_id";

if(!$result = $db->sql_query($sql))
{
message_die(GENERAL_ERROR, "Could not remove data from words table", $lang['Error'], __LINE__, __FILE__, $sql);
}

$message = $lang['Word_removed'] . "<br /><br />" . sprintf($lang['Click_return_wordadmin'], "<a href=\"" . append_sid("admin_words.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . append_sid("index.$phpEx?pane=right") . "\">", "</a>");

message_die(GENERAL_MESSAGE, $message);
}
elseif( $word_id && !$confirm)
{
// Present the confirmation screen to the user
$template->set_filenames(array(
'body' => 'admin/confirm_body.tpl')
);

$hidden_fields = '<input type="hidden" name="mode" value="delete" /><input type="hidden" name="id" value="' . $word_id . '" />';

$template->assign_vars(array(
'MESSAGE_TITLE' => $lang['Confirm'],
'MESSAGE_TEXT' => $lang['Confirm_delete_word'],

'L_YES' => $lang['Yes'],
'L_NO' => $lang['No'],

'S_CONFIRM_ACTION' => append_sid("admin_words.$phpEx"),
'S_HIDDEN_FIELDS' => $hidden_fields)
);
}
else
{
message_die(GENERAL_MESSAGE, $lang['No_word_selected']);
}
}
}
else
{
$template->set_filenames(array(
"body" => "admin/words_list_body.tpl")
);

$sql = "SELECT *
FROM " . WORDS_TABLE . "
ORDER BY word";
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, "Could not query words table", $lang['Error'], __LINE__, __FILE__, $sql);
}

$word_rows = $db->sql_fetchrowset($result);
$db->sql_freeresult($result);
$word_count = count($word_rows);

$template->assign_vars(array(
"L_WORDS_TITLE" => $lang['Words_title'],
"L_WORDS_TEXT" => $lang['Words_explain'],
"L_WORD" => $lang['Word'],
"L_REPLACEMENT" => $lang['Replacement'],
"L_EDIT" => $lang['Edit'],
"L_DELETE" => $lang['Delete'],
"L_ADD_WORD" => $lang['Add_new_word'],
"L_ACTION" => $lang['Action'],

"S_WORDS_ACTION" => append_sid("admin_words.$phpEx"),
"S_HIDDEN_FIELDS" => '')
);

for($i = 0; $i < $word_count; $i++)
{
$word = $word_rows[$i]['word'];
$replacement = $word_rows[$i]['replacement'];
$word_id = $word_rows[$i]['word_id'];

$row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
$row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];

$template->assign_block_vars("words", array(
"ROW_COLOR" => "#" . $row_color,
"ROW_CLASS" => $row_class,
"WORD" => $word,
"REPLACEMENT" => $replacement,

"U_WORD_EDIT" => append_sid("admin_words.$phpEx?mode=edit&id=$word_id"),
"U_WORD_DELETE" => append_sid("admin_words.$phpEx?mode=delete&id=$word_id"))
);
}
}

$template->pparse("body");

include('./page_footer_admin.'.$phpEx);

?>

svenn
Berichten: 5001
Lid geworden op: 14 jul 2004, 13:00
Locatie: Kortrijk
Contacteer:

Bericht door svenn » 10 dec 2006, 20:40

kun je in subsilver nog die button zien ?

chupkes
Berichten: 10
Lid geworden op: 26 nov 2005, 12:08

Bericht door chupkes » 10 dec 2006, 20:41

nope, daar issie ook weg..

svenn
Berichten: 5001
Lid geworden op: 14 jul 2004, 13:00
Locatie: Kortrijk
Contacteer:

Bericht door svenn » 10 dec 2006, 20:43

stonden er al waardes in ? kun je trouwens even de bron nemen terwijl je naar die pagina alleen kijkt ?

chupkes
Berichten: 10
Lid geworden op: 26 nov 2005, 12:08

Bericht door chupkes » 10 dec 2006, 20:45

Vroeger kon ik wel gewoon woorden toevoegen ja, maar nadat ik alle woorden eruit gehaald had om nieuwe erin te zetten, was die knop opeens weg.

Pagina bron:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="ltr">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- link rel="stylesheet" href="../templates/subSilver/xand.css" type="text/css" -->
<style type="text/css">
<!--

/*
The original subSilver Theme for phpBB version 2+
Created by subBlue design
http://www.subBlue.com

NOTE: These CSS definitions are stored within the main page body so that you can use the phpBB2
theme administration centre. When you have finalised your style you could cut the final CSS code
and place it in an external file, deleting this section to save bandwidth.
*/


/* General page style. The scroll bar colours only visible in IE5.5+ */
body {
background-color: #E5E5E5;
scrollbar-face-color: #DEE3E7;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #DEE3E7;
scrollbar-3dlight-color: #D1D7DC;
scrollbar-arrow-color: #006699;
scrollbar-track-color: #EFEFEF;
scrollbar-darkshadow-color: #98AAB1;
}

/* General font families for common tags */
font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif }
p, td { font-size : 11; color : #000000; }
a:link,a:active,a:visited { color : #006699; }
a:hover { text-decoration: underline; color : #DD6900; }
hr { height: 0px; border: solid #D1D7DC 0px; border-top-width: 1px;}
h1,h2 { font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; font-size : 22px; font-weight : bold; text-decoration : none; line-height : 120%; color : #000000;}


/* This is the border line & background colour round the entire page */
.bodyline { background-color: #FFFFFF; border: 1px #98AAB1 solid; }

/* This is the outline round the main forum tables */
.forumline { background-color: #FFFFFF; border: 2px #006699 solid; }


/* Main table cell colours and backgrounds */
td.row1 { background-color: #EFEFEF; }
td.row2 { background-color: #DEE3E7; }
td.row3 { background-color: #D1D7DC; }


/*
This is for the table cell above the Topics, Post & Last posts on the index.php page
By default this is the fading out gradiated silver background.
However, you could replace this with a bitmap specific for each forum
*/
td.rowpic {
background-color: #FFFFFF;
background-image: url(../templates/subSilver/images/cellpic2.jpg);
background-repeat: repeat-y;
}

/* Header cells - the blue and silver gradient backgrounds */
th {
color: #FFA34F; font-size: 11px; font-weight : bold;
background-color: #006699; height: 25px;
background-image: url(../templates/subSilver/images/cellpic3.gif);
}

td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
background-image: url(../templates/subSilver/images/cellpic1.gif);
background-color:#D1D7DC; border: #FFFFFF; border-style: solid; height: 28px;
}


/*
Setting additional nice inner borders for the main table cells.
The names indicate which sides the border will be on.
Don't worry if you don't understand this, just ignore it :-)
*/
td.cat,td.catHead,td.catBottom {
height: 29px;
border-width: 0px 0px 0px 0px;
}
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
font-weight: bold; border: #FFFFFF; border-style: solid; height: 28px; }
td.row3Right,td.spaceRow {
background-color: #D1D7DC; border: #FFFFFF; border-style: solid; }

th.thHead,td.catHead { font-size: 12px; border-width: 1px 1px 0px 1px; }
th.thSides,td.catSides,td.spaceRow { border-width: 0px 1px 0px 1px; }
th.thRight,td.catRight,td.row3Right { border-width: 0px 1px 0px 0px; }
th.thLeft,td.catLeft { border-width: 0px 0px 0px 1px; }
th.thBottom,td.catBottom { border-width: 0px 1px 1px 1px; }
th.thTop { border-width: 1px 0px 0px 0px; }
th.thCornerL { border-width: 1px 0px 0px 1px; }
th.thCornerR { border-width: 1px 1px 0px 0px; }


/* The largest text used in the index page title and toptic title etc. */
.maintitle {
font-weight: bold; font-size: 22px; font-family: "Trebuchet MS",Verdana, Arial, Helvetica, sans-serif;
text-decoration: none; line-height : 120%; color : #000000;
}


/* General text */
.gen { font-size : 12px; }
.genmed { font-size : 11px; }
.gensmall { font-size : 10px; }
.gen,.genmed,.gensmall { color : #000000; }
a.gen,a.genmed,a.gensmall { color: #006699; text-decoration: none; }
a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: underline; }


/* The register, login, search etc links at the top of the page */
.mainmenu { font-size : 11px; color : #000000 }
a.mainmenu { text-decoration: none; color : #006699; }
a.mainmenu:hover{ text-decoration: underline; color : #DD6900; }


/* Forum category titles */
.cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #006699}
a.cattitle { text-decoration: none; color : #006699; }
a.cattitle:hover{ text-decoration: underline; }


/* Forum title: Text and link to the forums used in: index.php */
.forumlink { font-weight: bold; font-size: 12px; color : #006699; }
a.forumlink { text-decoration: none; color : #006699; }
a.forumlink:hover{ text-decoration: underline; color : #DD6900; }


/* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
.nav { font-weight: bold; font-size: 11px; color : #000000;}
a.nav { text-decoration: none; color : #006699; }
a.nav:hover { text-decoration: underline; }



/* Name of poster in viewmsg.php and viewtopic.php and other places */
.name { font-size : 11px; color : #000000;}

/* Location, number of posts, post date etc */
.postdetails { font-size : 10px; color : #000000; }


/* The content of the posts (body of text) */
.postbody { font-size : 12px; line-height: 18px}
a.postlink:link { text-decoration: none; color : #006699 }
a.postlink:visited { text-decoration: none; color : #5493B4; }
a.postlink:hover { text-decoration: underline; color : #DD6900}


/* Quote & Code blocks */
.code {
font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600;
background-color: #FAFAFA; border: #D1D7DC; border-style: solid;
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}

.quote {
font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #444444; line-height: 125%;
background-color: #FAFAFA; border: #D1D7DC; border-style: solid;
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}


/* Copyright and bottom info */
.copyright { font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; color: #444444; letter-spacing: -1px;}
a.copyright { color: #444444; text-decoration: none;}
a.copyright:hover { color: #000000; text-decoration: underline;}


/* Form elements */
input,textarea, select {
color : #000000;
font: normal 11px Verdana, Arial, Helvetica, sans-serif;
border-color : #000000;
}

/* The text input fields background colour */
input.post, textarea.post, select {
background-color : #FFFFFF;
}

input { text-indent : 2px; }

/* The buttons used for bbCode styling in message post */
input.button {
background-color : #EFEFEF;
color : #000000;
font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* The main submit button option */
input.mainoption {
background-color : #FAFAFA;
font-weight : bold;
}

/* None-bold submit button */
input.liteoption {
background-color : #FAFAFA;
font-weight : normal;
}

/* This is the line in the posting page which shows the rollover
help line. This is actually a text box, but if set to be the same
colour as the background no one will know ;)
*/
.helpline { background-color: #DEE3E7; border-style: none; }


/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
@import url("../templates/subSilver/formIE.css");
-->
</style>
<title>V.I.P. Lan-Party - </title>
</head>
<body bgcolor="#E5E5E5" text="#000000" link="#006699" vlink="#5493B4">

<a name="top"></a>


<h1>Woord Censurering</h1>

<P>Op dit paneel kun je woorden toevoegen, bewerken en verwijderen die automatisch op alle forums gecensureerd worden. Bovendien kunnen gebruikers zich niet registreren met een gebruikersnaam waarin zo'n woord voorkomt. Wildcards (*) worden geaccepteerd in het woord veld, bijv. *pik* komt overeen met Lopikkerwaard, pik* met pikant en *pik met hospik.</p>

<form method="post" action="admin_words.php?sid=505f38c8daa1657bca53adcd4d6a44fb"><table cellspacing="1" cellpadding="4" border="0" align="center" class="forumline">
<tr>
<th class="thCornerL">Woord</th>
<th class="thTop">Vervangen door</th>
<th colspan="2" class="thCornerR">Actie</th>
</tr>

<tr>
<td class="row1" align="center"><noscript></td>
<td class="row1" align="center"><noscript></td>
<td class="row1"><a href="admin_words.php?mode=edit&id=12&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row1"><a href="admin_words.php?mode=delete&id=12&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row2" align="center">H.O.E.R</td>
<td class="row2" align="center">*heerlijke oude erotische rakkers*</td>
<td class="row2"><a href="admin_words.php?mode=edit&id=11&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row2"><a href="admin_words.php?mode=delete&id=11&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row1" align="center">k a n k e r</td>
<td class="row1" align="center">bloemetjes</td>
<td class="row1"><a href="admin_words.php?mode=edit&id=8&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row1"><a href="admin_words.php?mode=delete&id=8&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row2" align="center">K.A.N.K.E.R</td>
<td class="row2" align="center">bloemetjes</td>
<td class="row2"><a href="admin_words.php?mode=edit&id=7&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row2"><a href="admin_words.php?mode=delete&id=7&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row1" align="center">k@nk3r</td>
<td class="row1" align="center">bloemetjes</td>
<td class="row1"><a href="admin_words.php?mode=edit&id=3&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row1"><a href="admin_words.php?mode=delete&id=3&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row2" align="center">k@nk3r</td>
<td class="row2" align="center">bloemetjes</td>
<td class="row2"><a href="admin_words.php?mode=edit&id=4&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row2"><a href="admin_words.php?mode=delete&id=4&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row1" align="center">k@nker</td>
<td class="row1" align="center">bloemetjes</td>
<td class="row1"><a href="admin_words.php?mode=edit&id=2&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row1"><a href="admin_words.php?mode=delete&id=2&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row2" align="center">k@nker</td>
<td class="row2" align="center">bloemetjes</td>
<td class="row2"><a href="admin_words.php?mode=edit&id=5&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row2"><a href="admin_words.php?mode=delete&id=5&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row1" align="center">kank3r</td>
<td class="row1" align="center">bloemetjes</td>
<td class="row1"><a href="admin_words.php?mode=edit&id=6&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row1"><a href="admin_words.php?mode=delete&id=6&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row2" align="center">kanker</td>
<td class="row2" align="center">bloemetjes</td>
<td class="row2"><a href="admin_words.php?mode=edit&id=1&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row2"><a href="admin_words.php?mode=delete&id=1&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td class="row1" align="center">[hr]</td>
<td class="row1" align="center"><hr></td>
<td class="row1"><a href="admin_words.php?mode=edit&id=9&sid=505f38c8daa1657bca53adcd4d6a44fb">Bewerk</a></td>
<td class="row1"><a href="admin_words.php?mode=delete&id=9&sid=505f38c8daa1657bca53adcd4d6a44fb">Verwijder</a></td>
</tr>
<tr>
<td colspan="5" align="center" class="catBottom"><input type="submit" name="add" value="Nieuw woord toevoegen" class="mainoption" /></td>
</tr>
</table></form>


<!--

Please note that the following copyright notice
MUST be displayed on each and every page output
by phpBB. You may alter the font, colour etc. but
you CANNOT remove it, nor change it so that it be,
to all intents and purposes, invisible. You may ADD
your own notice to it should you have altered the
code but you may not replace it. The hyperlink must
also remain intact. These conditions are part of the
licence this software is released under. See the
LICENCE and README files for more information.

The phpBB Group : 2001

//-->

<div align="center"><span class="copyright">Powered by phpBB 2.0.21 &copy; 2001 <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB Group</a><br /></span></div>

</body>
</html>

chupkes
Berichten: 10
Lid geworden op: 26 nov 2005, 12:08

Bericht door chupkes » 10 dec 2006, 20:49

wtf :+

in de bron staan allerlei woorden die gecensureerd zijn, maar ik kan er geen van allen zien als ik naar Woord Censuur ga :?

chupkes
Berichten: 10
Lid geworden op: 26 nov 2005, 12:08

Bericht door chupkes » 10 dec 2006, 21:30

probleem opgelost :+
mn host vond het grappig even in mn scripts te klooien :+ rofl..

Gebruikersavatar
Xanland
Berichten: 828
Lid geworden op: 23 jan 2005, 17:02
Locatie: Apeldoorn, The Netherlands
Contacteer:

Bericht door Xanland » 10 dec 2006, 21:40

Als ik jouw was zou ik verhuizen van host ;) :P
Mvg, Xanland.
phpBBmods
---
Muziekforum
---

Gesloten