Exemplo n.º 1
0
 function preConnect()
 {
     if (!count($this->entities)) {
         return;
     }
     $sep = '';
     // Nux: fix for potential pattern overflow...
     $this->pattern = '';
     foreach ($this->entities as $entity) {
         $this->pattern .= $sep . Doku_Lexer_Escape($entity);
         $sep = '|';
     }
 }
Exemplo n.º 2
0
 function preConnect()
 {
     if (!count($this->entities) || $this->pattern != '') {
         return;
     }
     $sep = '';
     foreach ($this->entities as $entity) {
         $this->pattern .= $sep . Doku_Lexer_Escape($entity);
         $sep = '|';
     }
 }
Exemplo n.º 3
0
 function preConnect()
 {
     $sep = '';
     foreach ($this->entities as $entity) {
         $this->pattern .= $sep . Doku_Lexer_Escape($entity);
         $sep = '|';
     }
 }