- Timestamp:
- 10/06/08 20:49:05 (2 months ago)
- Files:
-
- 1 modified
-
lang/php/misc/Hermit/src/Hermit/HermitParam.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/php/misc/Hermit/src/Hermit/HermitParam.php
r20830 r20846 53 53 $tos = array(); 54 54 foreach($this as $name => $value){ 55 $tos[] = $name . '=>' . $value; 55 if(null === $value){ 56 $tos[] = $name . ':null'; 57 } else { 58 $tos[] = $name . ':' . $value; 59 } 56 60 } 57 return __CLASS__ . ' {' . join(', ', $tos) . '}';61 return __CLASS__ . ' {' . join(', ', $tos) . '}'; 58 62 } 59 63 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)