Changeset 2624 for trunk/vendor/Sensei
- Timestamp:
- 09/23/07 22:44:45 (16 months ago)
- Files:
-
- 1 modified
-
trunk/vendor/Sensei/Sensei/Doc/Section.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/vendor/Sensei/Sensei/Doc/Section.php
r2622 r2624 132 132 return $this->_parent->getPath($short, $separator) . $separator . $this->getPath(true); 133 133 } else { 134 $patterns = array('/\s/', '/[^a-z0-9-]/');135 $replacements = array('-', '');136 137 $path = preg_replace($patterns, $replacements, strtolower($this->_name));138 139 134 return self::convertNameToPath($this->_name); 140 135 }