- Patch #130478 by Jaza: improved code comments.

6.x
Dries Buytaert 2007-03-25 20:49:06 +00:00
parent 860313e72b
commit e187c8d957
1 changed files with 4 additions and 2 deletions

View File

@ -32,7 +32,9 @@ function default_profile_details() {
* screen. * screen.
*/ */
function default_profile_final() { function default_profile_final() {
// Insert default user-defined node types into the database. // Insert default user-defined node types into the database. For a complete
// list of available node type attributes, refer to the node type API
// documentation at: http://api.drupal.org/api/HEAD/function/hook_node_info.
$types = array( $types = array(
array( array(
'type' => 'page', 'type' => 'page',
@ -67,4 +69,4 @@ function default_profile_final() {
$theme_settings = variable_get('theme_settings', array()); $theme_settings = variable_get('theme_settings', array());
$theme_settings['toggle_node_info_page'] = FALSE; $theme_settings['toggle_node_info_page'] = FALSE;
variable_set('theme_settings', $theme_settings); variable_set('theme_settings', $theme_settings);
} }