summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-20 18:51:36 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-20 18:51:36 +0000
commitd24d954479320116bc01f332c28a8eaab28c3ccd (patch)
tree1c791703bde5429b500e91cabb5845a80e13aff3 /includes
parent999d76e7aa9d9fb1b79b0be171e18e705d9ab7ff (diff)
downloadbrdo-d24d954479320116bc01f332c28a8eaab28c3ccd.tar.gz
brdo-d24d954479320116bc01f332c28a8eaab28c3ccd.tar.bz2
- Patch #521474 by bangpound, JuliaKM et al: rename admin/site-building to admin/structure.
Diffstat (limited to 'includes')
-rw-r--r--includes/actions.inc2
-rw-r--r--includes/common.inc2
-rw-r--r--includes/install.inc2
-rw-r--r--includes/path.inc2
4 files changed, 4 insertions, 4 deletions
diff --git a/includes/actions.inc b/includes/actions.inc
index c17467472..638dbb1fd 100644
--- a/includes/actions.inc
+++ b/includes/actions.inc
@@ -169,7 +169,7 @@ function actions_list($reset = FALSE) {
*
* Compare with actions_list() which gathers actions by invoking
* hook_action_info(). The two are synchronized by visiting
- * /admin/build/actions (when actions.module is enabled) which runs
+ * /admin/structure/actions (when actions.module is enabled) which runs
* actions_synchronize().
*
* @return
diff --git a/includes/common.inc b/includes/common.inc
index 1ac613b73..4f36a7d8d 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -3145,7 +3145,7 @@ function drupal_get_library($module, $name) {
* @endcode
*
* In a more complex case where there are several groups in one column (such as
- * the block regions on the admin/build/block page), a separate subgroup class
+ * the block regions on the admin/structure/block page), a separate subgroup class
* must also be added to differentiate the groups.
* @code
* $form['my_elements'][$region][$delta]['weight']['#attributes']['class'] = "my-elements-weight my-elements-weight-" . $region;
diff --git a/includes/install.inc b/includes/install.inc
index e3233946e..0b5f0b8f9 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -506,7 +506,7 @@ function drupal_install_modules($module_list = array(), $disable_modules_install
*
* Used during installation to install modules one at a time and then
* enable them, or to install a number of modules at one time
- * from admin/build/modules.
+ * from admin/structure/modules.
*
* @param $module
* The machine name of the module to install.
diff --git a/includes/path.inc b/includes/path.inc
index 4e4a62e6c..2bba38f6f 100644
--- a/includes/path.inc
+++ b/includes/path.inc
@@ -223,7 +223,7 @@ function drupal_get_normal_path($path, $path_language = '') {
/**
* Return a component of the current Drupal path.
*
- * When viewing a page at the path "admin/build/types", for example, arg(0)
+ * When viewing a page at the path "admin/structure/types", for example, arg(0)
* returns "admin", arg(1) returns "content", and arg(2) returns "types".
*
* Avoid use of this function where possible, as resulting code is hard to read.