diff --git a/profile.block.inc b/profile.block.inc index 93ccf0b..a6721ea 100644 --- a/profile.block.inc +++ b/profile.block.inc @@ -1,5 +1,4 @@ getChildren(); $title = $children[$this->childDelta]['info']; - return strlen($this->settings['title']) ? check_plain($this->settings['title']) : $title; } + return strlen($this->settings['title']) ? check_plain($this->settings['title']) : $title; + } /** * Sets block subject on block view. @@ -59,7 +59,6 @@ class ProfileBlock extends Block { 'description' => t('Provides Profile data as blocks.'), ); } - return $blocks; } } diff --git a/profile.devel.inc b/profile.devel.inc index 1c148b1..9c4b2e5 100644 --- a/profile.devel.inc +++ b/profile.devel.inc @@ -4,7 +4,6 @@ * Profile type editing UI. */ - /** * Generate profile */ diff --git a/profile.install b/profile.install index 93fe2eb..c7a5e2b 100644 --- a/profile.install +++ b/profile.install @@ -10,7 +10,6 @@ function profile_install() { } - /** * Implements hook_schema(). */ @@ -74,7 +73,6 @@ function profile_schema() { return $schema; } - /** * Implements hook_uninstall(). */ @@ -87,7 +85,6 @@ function profile_uninstall() { } } - /** * Implements hook_requirements(). * @@ -105,7 +102,6 @@ function profile_requirements($phase) { return array(); } - /** * Implements hook_update_dependencies(). * @@ -120,7 +116,6 @@ function profile_update_dependencies() { ); } - /** * Initialize the profile settings to use fieldsets. */ @@ -128,7 +123,6 @@ function profile_update_1000() { config_set('profile.settings', 'profile_display', 'fieldsets'); } - /** * Migrate any existing Profile2 profiles into this module. */ diff --git a/profile.module b/profile.module index e1bdfaa..c09625e 100644 --- a/profile.module +++ b/profile.module @@ -1072,7 +1072,6 @@ function profile_user_get_properties($account, array $options, $name) { return $profile ? $profile : NULL; } - /** * Return class autoload information. */