View | Details | Raw Unified | Return to bug 123789
Collapse All | Expand All

(-)drupal5-i18n/Makefile (-2 / +1 lines)
Lines 6-14 Link Here
6
#
6
#
7
7
8
PORTNAME=	i18n
8
PORTNAME=	i18n
9
DISTVERSION=	5.x-2.1
9
DISTVERSION=	5.x-2.3
10
CATEGORIES=	www
10
CATEGORIES=	www
11
MASTER_SITES=	http://ftp.osuosl.org/pub/drupal/files/projects/
12
11
13
MAINTAINER=	nick@foobar.org
12
MAINTAINER=	nick@foobar.org
14
COMMENT=	An internationalisation module for the Drupal CMS
13
COMMENT=	An internationalisation module for the Drupal CMS
(-)drupal5-i18n/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (drupal/i18n-5.x-2.1.tar.gz) = 7c884e2240e7b55c360a3ff7f527171f
1
MD5 (drupal/i18n-5.x-2.3.tar.gz) = cc92b18b7a0a758fe2637e1365bf6d9e
2
SHA256 (drupal/i18n-5.x-2.1.tar.gz) = 7799d1fbd2437a0f1fe8a300d5e7e647b4f395baad18d1dbf428f616a76eed7b
2
SHA256 (drupal/i18n-5.x-2.3.tar.gz) = 2b15a2f73e930fc13229da4aafbf1611625e50ecead72fe78a3c95e0a8679cba
3
SIZE (drupal/i18n-5.x-2.1.tar.gz) = 71684
3
SIZE (drupal/i18n-5.x-2.3.tar.gz) = 89618
(-)drupal5-i18n/files/patch-i18n.module (-15 lines)
Lines 1-15 Link Here
1
--- i18n.module	2007/05/03 13:48:57	1.36.2.12
2
+++ i18n.module	2007/05/16 17:43:10	1.36.2.13
3
@@ -187,10 +187,10 @@
4
         if (isset($node->menu) && !$node->menu['delete'] && $node->menu['title']) {
5
           $item = $node->menu;
6
           $item['path'] = ($item['path']) ? $item['path'] : "node/$node->nid";
7
-
8
+          $item['type'] = $item['type'] | MENU_MODIFIED_BY_ADMIN;
9
           if ($item['mid']) {
10
             // Update menu item 
11
-            db_query("UPDATE {menu} SET pid = %d, path = '%s', title = '%s', description = '%s', weight = %d, type = %d, language = '%s' WHERE mid = %d", $item['pid'], $item['path'], $item['title'], $item['description'], $item['weight'], $item['type'], $item['mid'], $node->language);
12
+            db_query("UPDATE {menu} SET pid = %d, path = '%s', title = '%s', description = '%s', weight = %d, type = %d, language = '%s' WHERE mid = %d", $item['pid'], $item['path'], $item['title'], $item['description'], $item['weight'], $item['type'], $node->language, $item['mid']);
13
             drupal_set_message(t('The menu item %title has been updated with node language.', array('%title' => $item['title'])));
14
           } elseif(SAVED_NEW == menu_save_item($item)) {
15
             // Creating new menu item with node language

Return to bug 123789