? .DS_Store
? theme_l_00.patch
? sites/default/files
? sites/default/settings.php
Index: includes/common.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/common.inc,v
retrieving revision 1.800
diff -u -p -r1.800 common.inc
--- includes/common.inc	6 Oct 2008 11:07:14 -0000	1.800
+++ includes/common.inc	8 Oct 2008 17:26:39 -0000
@@ -1514,7 +1514,7 @@ function l($text, $path, array $options 
     $options['attributes']['title'] = strip_tags($options['attributes']['title']);
   }
 
-  return '<a href="' . check_url(url($path, $options)) . '"' . drupal_attributes($options['attributes']) . '>' . ($options['html'] ? $text : check_plain($text)) . '</a>';
+  return theme('l', check_url(url($path, $options)), drupal_attributes($options['attributes']), $options['html'] ? $text : check_plain($text));
 }
 
 /**
Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.437
diff -u -p -r1.437 theme.inc
--- includes/theme.inc	20 Sep 2008 20:22:23 -0000	1.437
+++ includes/theme.inc	8 Oct 2008 17:26:39 -0000
@@ -1697,6 +1697,15 @@ function theme_indentation($size = 1) {
 }
 
 /**
+ * Theme an internal Drupal link.
+ *
+ * @param $path
+ */
+function theme_l($path, $attributes, $text) {return '<strong>yaman</strong>';
+  return '<a href="' . $path . '"' . $attributes . '>' . $text . '</a>';
+}
+
+/**
  * @} End of "defgroup themeable".
  */
 
