Skip to content

Commit

Permalink
minor - fix note typo and shorten param
Browse files Browse the repository at this point in the history
  • Loading branch information
ophian committed Dec 8, 2012
1 parent a66aa90 commit 546e7c9
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -294,9 +294,9 @@ function GetChildren(&$vals, &$i) {
}
}

// remove double slahshes without breaking URI
protected function fixUri($string) {
return preg_replace('%([^:])([/]{2,})%', '\\1/', $string);
// remove double slashes without breaking URI
protected function fixUri($s) {
return preg_replace('%([^:])([/]{2,})%', '\\1/', $s);
}

// Create recursive directories; begins at serendipity plugin root folder level
Expand Down

0 comments on commit 546e7c9

Please sign in to comment.