summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2019-06-29 17:11:21 +0000
committerroot <root@dezilaromed.themanaworld.org>2019-06-29 17:11:21 +0000
commitbe5aada6dcfabdb565f17b18d0c7cefd64cf0b29 (patch)
treed62e97947dea0c466ee48c056c918b3101c46868 /includes
parenta4f747c5de3b831ba3c1d387817fdc75be25e1cc (diff)
downloadwebsite-be5aada6dcfabdb565f17b18d0c7cefd64cf0b29.tar.gz
website-be5aada6dcfabdb565f17b18d0c7cefd64cf0b29.tar.bz2
website-be5aada6dcfabdb565f17b18d0c7cefd64cf0b29.tar.xz
website-be5aada6dcfabdb565f17b18d0c7cefd64cf0b29.zip
remove more unused stuff
Diffstat (limited to 'includes')
-rw-r--r--includes/libs/libstrutils.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/includes/libs/libstrutils.php b/includes/libs/libstrutils.php
deleted file mode 100644
index ee81c33..0000000
--- a/includes/libs/libstrutils.php
+++ /dev/null
@@ -1,10 +0,0 @@
-<?php
-
- define("BAD_STRING_DESC", "Only alphanumeric characters are allowed.");
-
- function check_chars($string)
- {
- return ctype_alnum($string) && (strpos($string, '"') === FALSE);
- }
-
-?>