]> 91.132.146.200 Git - dolphin.git/commitdiff
code cleanup
authorBanana <mail@bananas-playground.net>
Thu, 24 Dec 2020 17:40:30 +0000 (18:40 +0100)
committerBanana <mail@bananas-playground.net>
Thu, 24 Dec 2020 17:40:30 +0000 (18:40 +0100)
single-functions/validate-input.php

index 358ff795b56aa9629de9fe6549d3ba513505a6e9..45c1d195811545197f27f464283a425fab8774d4 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /**
  *  dolphin. Collection of useful PHP skeletons.
- *  Copyright (C) 2009-2019 Johannes 'Banana' Keßler
+ *  Copyright (C) 2009-2010 Johannes 'Banana' Keßler
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
  * validate the given string with the given type. Optional check the string
  * length
  *
- * @param string $input The string to check
- * @param string $mode How the string should be checked
- * @param mixed $limit If int given the string is checked for length
- *
  * @see http://de.php.net/manual/en/regexp.reference.unicode.php
  * http://www.sql-und-xml.de/unicode-database/#pc
  *
  * the replace should be empty, otherwise are there chars which are not
  * allowed
  *
- */
+ * @param string $input The string to check
+ * @param string $mode How the string should be checked
+ * @param mixed $limit If int given the string is checked for length
+ *
+ * @return bool
+  */
  function validate($input,$mode='text',$limit=false) {
        // check if we have input
        $input = trim($input);