#189205 by webernet: fix missing quite in theme.inc code documentation

6.x
Gábor Hojtsy 2007-11-04 20:32:34 +00:00
parent ced4e284e3
commit cf79b3e778
1 changed files with 1 additions and 1 deletions

View File

@ -965,7 +965,7 @@ function theme_render_template($file, $variables) {
* Additionally, the theme() function can take an array of theme
* hooks, which can be used to provide 'fallback' implementations to
* allow for more specific control of output. For example, the function:
* theme(array('table__foo', 'table), $header, $rows) would look to see if
* theme(array('table__foo', 'table'), $header, $rows) would look to see if
* 'table__foo' is registered anywhere; if it is not, it would 'fall back'
* to the generic 'table' implementation. This can be used to attach specific
* theme functions to named objects, allowing the themer more control over