Alexander Mylnikov

18Nov/110

D7 – Remove Meta Tag Generator

To delete next line <meta name="Generator" content="Drupal 7 (http://drupal.org)" /> It's in includes/common.inc line 320-328 removed these two lines by putting //

//      'name' => 'Generator', //      'content' => 'Drupal ' . $version . ' (http://drupal.org)',

And then removed ['#attributes']['content'] from this line.

$elements['system_meta_generator']['#attached']['drupal_add_http_header'][] = array('X-Generator', $elements['system_meta_generator']['#attributes']['content']);
17Nov/111

Strict warning : Only variables should be passed by reference dans views_page_title_pattern_alter()

Since then, when I go on pages made by views, I got this srtict warning :

Strict warning : Only variables should be passed by reference dans views_page_title_pattern_alter() (line 33 in /sites/all/modules/page_title/modules/views.page_title.inc).

To fix the original problem in views.page_title.inc, replace line 33 with this:

// $h = array_shift(array_splice($h, count($args)-1, 1));
$hh = array_splice($h, count($args)-1, 1);
$h = array_shift($hh);