summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-05-13 17:37:58 +0000
committerDries Buytaert <dries@buytaert.net>2008-05-13 17:37:58 +0000
commit2350fda4dcb9d5df8df6754a531aab1fb37fe776 (patch)
treeda70a5fa084660d2d705a54defa4b20922d3b8e6 /modules
parent003108639a765cdffbfbedbe6942a1a0b2ddbd9f (diff)
downloadbrdo-2350fda4dcb9d5df8df6754a531aab1fb37fe776.tar.gz
brdo-2350fda4dcb9d5df8df6754a531aab1fb37fe776.tar.bz2
- Fixed broken URLs.
Diffstat (limited to 'modules')
-rw-r--r--modules/node/content_types.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/node/content_types.inc b/modules/node/content_types.inc
index 328f67bb8..a2214a057 100644
--- a/modules/node/content_types.inc
+++ b/modules/node/content_types.inc
@@ -20,16 +20,16 @@ function node_overview_types() {
if (node_hook($type, 'form')) {
$type_url_str = str_replace('_', '-', $type->type);
$row = array(
- l($name, 'admin/content/node-type/' . $type_url_str),
+ l($name, 'admin/build/node-type/' . $type_url_str),
check_plain($type->type),
filter_xss_admin($type->description),
);
// Set the edit column.
- $row[] = array('data' => l(t('edit'), 'admin/content/node-type/' . $type_url_str));
+ $row[] = array('data' => l(t('edit'), 'admin/build/node-type/' . $type_url_str));
// Set the delete column.
if ($type->custom) {
- $row[] = array('data' => l(t('delete'), 'admin/content/node-type/' . $type_url_str . '/delete'));
+ $row[] = array('data' => l(t('delete'), 'admin/build/node-type/' . $type_url_str . '/delete'));
}
else {
$row[] = array('data' => '');
@@ -280,7 +280,7 @@ function node_type_form_submit($form, &$form_state) {
node_type_reset($type);
}
elseif ($op == t('Delete content type')) {
- $form_state['redirect'] = 'admin/content/node-type/' . str_replace('_', '-', $type->old_type) . '/delete';
+ $form_state['redirect'] = 'admin/build/node-type/' . str_replace('_', '-', $type->old_type) . '/delete';
return;
}