Skip to content

Commit

Permalink
formatting and documentation cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alkemann committed Dec 17, 2009
1 parent 9decac0 commit 8e160ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/lithium/http/Media.php
Expand Up @@ -359,7 +359,7 @@ public static function render(&$response, $data = null, $options = array()) {
}

if (isset(static::$_handlers[$type])) {
$h = (array)static::$_handlers[$type] + (array) static::$_handlers['default'];
$h = (array) static::$_handlers[$type] + (array) static::$_handlers['default'];
} else {
$h = $options + $defaults;
$filter = function($v) { return $v !== null; };
Expand Down
2 changes: 1 addition & 1 deletion libraries/lithium/template/helper/Html.php
Expand Up @@ -322,7 +322,7 @@ function para($class, $content, $options = array()) {
*
* @param string $type The title of the external resource
* @param mixed $url The address of the external resource or string for content attribute
* @param array $attributes Other attributes for the generated tag. If the type attribute
* @param array $options Other attributes for the generated tag. If the type attribute
* is 'html', 'rss', 'atom', or 'icon', the mime-type is returned.
* @return string
*/
Expand Down
2 changes: 1 addition & 1 deletion libraries/lithium/test/Controller.php
Expand Up @@ -43,7 +43,7 @@ public function __invoke($request, $params, $options = array()) {
$template = Libraries::locate('test.reporter.template', 'layout', array(
'filter' => false, 'type' => 'file', 'suffix' => '.html.php',
));
include($template);
include $template;
}
}

Expand Down

0 comments on commit 8e160ac

Please sign in to comment.