Lines Matching +full:line -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)
101 * Creates a string suitable for saving as a line
158 // prepare user line
421 foreach ($lines as $line) {
422 $line = preg_replace('/(?<!\\\\)#.*$/', '', $line); //ignore comments (unless escaped)
423 $line = trim($line);
424 if (empty($line)) continue;
426 $row = $this->splitUserData($line);
442 * Get the user line split into it's parts
444 * @param string $line
447 protected function splitUserData($line) argument
449 $data = preg_split('/(?<![^\\\\]\\\\)\:/', $line, 5); // allow for : escaped as \:
452 … Logger::error('User line with less than 5 fields. Possibly corruption in your user file', $data);