commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / admin_views / admin_views.install
1 <?php
2
3 /**
4 * @file
5 * Administration views installation functions.
6 */
7
8 /**
9 * Implementation of hook_install().
10 */
11 function admin_views_install() {
12 // We need to run after Views module's hook_menu_alter() to fix the router
13 // item properties of overridden pages.
14 db_query("UPDATE {system} SET weight = 12 WHERE name = 'admin_views'");
15 }
16