6 |
kaklik |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
//---> This swear filter will help censor, not ever word have been placed in this area.
|
|
|
4 |
//---> If you feel that a word needs to be added, please email us at "info@amrgraphics.com"
|
|
|
5 |
|
|
|
6 |
$cenword_1 = "ass";
|
|
|
7 |
$censored_1 = "a*s";
|
|
|
8 |
$cenword_2 = "asshole";
|
|
|
9 |
$censored_2 = "a*****e";
|
|
|
10 |
$cenword_3 = "biatch";
|
|
|
11 |
$censored_3 = "b****h";
|
|
|
12 |
$cenword_4 = "bitch";
|
|
|
13 |
$censored_4 = "b***h";
|
|
|
14 |
$cenword_5 = "cock";
|
|
|
15 |
$censored_5 = "c**k";
|
|
|
16 |
$cenword_6 = "cunt";
|
|
|
17 |
$censored_6 = "c**t";
|
|
|
18 |
$cenword_7 = "fuck";
|
|
|
19 |
$censored_7 = "f**k";
|
|
|
20 |
$cenword_8 = "fucker";
|
|
|
21 |
$censored_8 = "f****r";
|
|
|
22 |
$cenword_9 = "shit";
|
|
|
23 |
$censored_9 = "s**t";
|
|
|
24 |
$cenword_10 = "slut";
|
|
|
25 |
$censored_10 = "s**t";
|
|
|
26 |
|
|
|
27 |
//---> Definitions for the insert form
|
|
|
28 |
|
|
|
29 |
$def_name = "name";
|
|
|
30 |
$def_msg = "message";
|
|
|
31 |
$allpost = "All Postings";
|
|
|
32 |
$hlpcod = "Help Codes";
|
|
|
33 |
|
|
|
34 |
//---> Window Messages
|
|
|
35 |
|
|
|
36 |
$clo_wdw = "Close Window";
|
|
|
37 |
|
|
|
38 |
//---> Help codes window
|
|
|
39 |
|
|
|
40 |
$line_01 = "TalkBox has the ability to to display email, website links or even icons in your posts. Here is a list of the codes that can be used in this TalkBox.";
|
|
|
41 |
$line_02 = "This code [mail]info@amrgraphics.com[/mail] will post a <a href=\"mailto:info@amrgraphics.com\">[ email ]</a> link.";
|
|
|
42 |
$line_03 = "This code [url]http://www.amrgraphics.com[/url] will post a <a href=\"http://www.amrgraphics.com\" target=\"blank\">[ website ]</a> link.";
|
|
|
43 |
$tabhead = "Image Code";
|
|
|
44 |
$usthis = "Use this code";
|
|
|
45 |
$line_04 = "Do You Want A TalkBox?";
|
|
|
46 |
$line_05 = "If so, direct your mouse to this <a href=\"http://www.amrgraphics.com/php_talkbox/amr_talkbox.zip\">link</a> and you will begin downloading a beta version of this TalkBox. Please be advised that this";
|
|
|
47 |
$line_06 = " is still under development and that the current version is";
|
|
|
48 |
?>
|