Home
last modified time | relevance | path

Searched refs:sibling (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/lib/plugins/authplain/_test/
H A Descaping.test.php115 * @param string $sibling account an unescaped pattern would also match
118 public function testModifyUserRegexMetacharacter($attacker, $sibling) argument
121 if ($sibling !== $attacker) {
122 $this->auth->createUser($sibling, "password", "Sibling", "s@example.com");
136 $saved = $this->auth->getUserData($sibling);
137 $this->assertNotFalse($saved, "sibling account '$sibling' was destroyed");
138 if ($sibling !== $attacker) {
/dokuwiki/_test/core/
H A DphpQuery-onefile.php4176 $sibling = $node;
4177 while($sibling->previousSibling) {
4178 $sibling = $sibling->previousSibling;
4179 $isElement = $sibling instanceof DOMELEMENT;
4180 if ($isElement && $sibling->tagName == $node->tagName)