summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-23 13:17:20 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-23 13:17:20 +0000
commite08abdd25259e8a2d8e4986a04e55ecd629f077d (patch)
treee585233eb19a629aa8c104a55b2273672ad5fb35 /includes
parent0d89694edbb2b280a28ed8f538683caddf72f168 (diff)
downloadbrdo-e08abdd25259e8a2d8e4986a04e55ecd629f077d.tar.gz
brdo-e08abdd25259e8a2d8e4986a04e55ecd629f077d.tar.bz2
#194946 by dmitrig01, Pasqualle: christmas cleanup (some code style issues fixed)
Diffstat (limited to 'includes')
-rw-r--r--includes/theme.inc2
-rw-r--r--includes/xmlrpc.inc13
2 files changed, 8 insertions, 7 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 42c54783f..0b75847bc 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -754,7 +754,7 @@ function drupal_find_theme_functions($cache, $prefixes) {
function drupal_find_theme_templates($cache, $extension, $path) {
$templates = array();
- // Escape the dots in the extension.
+ // Escape the periods in the extension.
$regex = str_replace('.', '\.', $extension) .'$';
// Because drupal_system_listing works the way it does, we check for real
diff --git a/includes/xmlrpc.inc b/includes/xmlrpc.inc
index 6dd79b8c3..59210a459 100644
--- a/includes/xmlrpc.inc
+++ b/includes/xmlrpc.inc
@@ -1,12 +1,13 @@
<?php
// $Id$
-/*
- Drupal XML-RPC library. Based on the IXR - The Incutio XML-RPC Library - (c) Incutio Ltd 2002-2005
- Version 1.7 (beta) - Simon Willison, 23rd May 2005
- Site: http://scripts.incutio.com/xmlrpc/
- Manual: http://scripts.incutio.com/xmlrpc/manual.php
- This version is made available under the GNU GPL License
+/**
+ * @file
+ * Drupal XML-RPC library. Based on the IXR - The Incutio XML-RPC Library - (c) Incutio Ltd 2002-2005
+ * Version 1.7 (beta) - Simon Willison, 23rd May 2005
+ * Site: http://scripts.incutio.com/xmlrpc/
+ * Manual: http://scripts.incutio.com/xmlrpc/manual.php
+ * This version is made available under the GNU GPL License
*/
/**