Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 106804
Collapse All | Expand All

(-)horde-3.0.5.orig/lib/Horde/DataTree.php (-3 / +3 lines)
Lines 1000-1009 Link Here
1000
        /* If there are several components to the name, explode and
1000
        /* If there are several components to the name, explode and
1001
         * get the last one, otherwise just return the name. */
1001
         * get the last one, otherwise just return the name. */
1002
        if (strpos($name, ':') !== false) {
1002
        if (strpos($name, ':') !== false) {
1003
            return array_pop(explode(':', $name));
1003
            $name = explode(':', $name);
1004
        } else {
1004
            $name = array_pop($name);
1005
            return $name;
1006
        }
1005
        }
1006
        return $name;
1007
    }
1007
    }
1008
1008
1009
    /**
1009
    /**

Return to bug 106804