| Commit message (Collapse) | Author | Age |
| |
|
| |
|
|
|
|
| |
floriant, chx, David Rothstein: initial field API patch. More work to be done, but ... oh my!
|
|
|
|
| |
hook_page_alter. Oh, behave.
|
| |
|
|
|
|
| |
that makes all languages active (with tests)
|
| |
|
| |
|
|
|
|
| |
expect.
|
|
|
|
| |
out of node module'.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
fixed.
|
| |
|
| |
|
|
|
|
| |
Patch of the Month award! :)
|
| |
|
|
|
|
| |
-> D7.
|
| |
|
| |
|
| |
|
|
|
|
| |
functions without a corresponding .tpl.php file.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
absolute paths.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
function names to correct expected behavior.
|
|
|
|
| |
registry_rebuild() for consistency.
|
|
|
|
| |
in theme_links().
|
|
|
|
| |
stylesheets.
|
|
|
|
| |
'secondary links' to 'main menu' and 'secondary menu' respectively. Based on usability study conducted with the help of Bojhan.
|
| |
|
|
|
|
| |
deceiving. If you have a look at theme_item_list you see that the $attributes variable takes a NULL value. This makes you believe that it wants a string, rather then a full array of attributes. If you make the default parameter "array()" it will make the programmer expect to pass an array of attributes rather then a string of attributes.
|
| |
|
| |
|
|
|
|
| |
theme_table().
|
|
|
|
|
|
|
|
|
|
|
| |
flobruit
et al. Can you say 'registry'? Drupal now maintains an internal registry of
all functions or classes in the system, allowing it to lazy-load code files as
needed (reducing the amount of code that must be parsed on each request). The
list of included files is cached per menu callback for subsequent loading by
the menu router. This way, a given page request will have all the code it needs
but little else, minimizing time spent parsing unneeded code.
|
| |
|
|
|
|
| |
discussion we've decided to make the concatenation operator consistent with the other operators.
|