summaryrefslogtreecommitdiff
path: root/includes/libs/libstrutils.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/libs/libstrutils.php')
-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);
- }
-
-?>