? .DS_Store
? install-locale.patch
? install-translation.patch
? includes/.DS_Store
? modules/locale/.DS_Store
? profiles/.DS_Store
? profiles/default/.DS_Store
? profiles/default/translations
? sites/.DS_Store
? sites/default/files
? sites/default/settings.php
Index: install.php
===================================================================
RCS file: /cvs/drupal/drupal/install.php,v
retrieving revision 1.111
diff -u -p -r1.111 install.php
--- install.php	4 Jan 2008 17:19:04 -0000	1.111
+++ install.php	7 Jan 2008 19:22:18 -0000
@@ -540,7 +540,7 @@ function install_select_locale($profilen
     }
 
     foreach ($locales as $locale) {
-      if ($_POST['locale'] == $locale->name) {
+      if (isset($_POST['locale']) && $_POST['locale'] == $locale->name) {
         return $locale->name;
       }
     }
Index: includes/bootstrap.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/bootstrap.inc,v
retrieving revision 1.204
diff -u -p -r1.204 bootstrap.inc
--- includes/bootstrap.inc	2 Jan 2008 14:29:32 -0000	1.204
+++ includes/bootstrap.inc	7 Jan 2008 19:22:19 -0000
@@ -132,6 +132,16 @@ define('LANGUAGE_NEGOTIATION_PATH', 2);
 define('LANGUAGE_NEGOTIATION_DOMAIN', 3);
 
 /**
+ * Language written left to right. Possible value of $language->direction.
+ */
+define('LANGUAGE_LTR', 0);
+
+/**
+ * Language written right to left. Possible value of $language->direction.
+ */
+define('LANGUAGE_RTL', 1);
+
+/**
  * Start the timer with the specified name. If you start and stop
  * the same timer multiple times, the measured intervals will be
  * accumulated.
Index: modules/locale/locale.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/locale/locale.module,v
retrieving revision 1.209
diff -u -p -r1.209 locale.module
--- modules/locale/locale.module	4 Jan 2008 17:10:36 -0000	1.209
+++ modules/locale/locale.module	7 Jan 2008 19:22:24 -0000
@@ -12,16 +12,6 @@
  *   Gettext portable object files are supported.
  */
 
-/**
- * Language written left to right. Possible value of $language->direction.
- */
-define('LANGUAGE_LTR', 0);
-
-/**
- * Language written right to left. Possible value of $language->direction.
- */
-define('LANGUAGE_RTL', 1);
-
 
 // ---------------------------------------------------------------------------------
 // Hook implementations
