Index: LoggerMDC.php
===================================================================
--- LoggerMDC.php	(revision 771940)
+++ LoggerMDC.php	(working copy)
@@ -19,8 +19,6 @@
  * @package log4php
  */
 
-define('LOGGER_MDC_HT_SIZE', 7);
-
 /**
  * This is the global repository of user mappings
  */
@@ -50,16 +48,12 @@
 	 * <p>If the current thread does not have a context map it is
 	 *	created as a side effect.</p>
 	 *
-	 * <p>Note that you cannot put more than {@link LOGGER_MDC_HT_SIZE} keys.</p>
-	 *
 	 * @param string $key the key
 	 * @param string $value the value
 	 * @static
 	 */
 	public static function put($key, $value) {
-		if(count($GLOBALS['log4php.LoggerMDC.ht']) < LOGGER_MDC_HT_SIZE) {
-			$GLOBALS['log4php.LoggerMDC.ht'][$key] = $value;
-		}
+   		$GLOBALS['log4php.LoggerMDC.ht'][$key] = $value;
 	}
   
 	/**
