aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-03-08 12:32:20 +0100
committerMario Vavti <mario@mariovavti.com>2019-03-08 12:32:20 +0100
commit97727260651a76b5b67568925b0fe0d5b688ce0c (patch)
treef0cddb38c82b91929a18a4178d13932479f16c02 /include/text.php
parent8ecdde6cb573ace776b472046388bb046dc59451 (diff)
downloadvolse-hubzilla-4.0.tar.gz
volse-hubzilla-4.0.tar.bz2
volse-hubzilla-4.0.zip
merge text.php and hmessages.po4.0
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/text.php b/include/text.php
index 80ed7d6db..ec3eb7b10 100644
--- a/include/text.php
+++ b/include/text.php
@@ -3331,28 +3331,6 @@ function array2XML($obj, $array) {
}
}
-function array_path_exists($str,$arr) {
-
- $ptr = $arr;
- $search = explode('/', $str);
-
- if($search) {
- foreach($search as $s) {
- if(array_key_exists($s,$ptr)) {
- $ptr = $ptr[$s];
- }
- else {
- return false;
- }
- }
- return true;
- }
-
- return false;
-
-}
-
-
/**
* @brief Inserts an array into $table.
*