From 73768f4a8d58673399c13f49819a4da29c5f00f5 Mon Sep 17 00:00:00 2001 From: westi Date: Fri, 28 Mar 2008 19:05:22 +0000 Subject: [PATCH] Remove the slash from html generators and camelcase WP. Fixes #6440 props lloydbudd. git-svn-id: http://svn.automattic.com/wordpress/trunk@7562 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 301ae9c196..1b1baf3092 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -1163,10 +1163,10 @@ function the_generator ( $type ) { function get_the_generator ( $type ) { switch ($type) { case 'html': - $gen = '' . "\n"; + $gen = '' . "\n"; break; case 'xhtml': - $gen = '' . "\n"; + $gen = '' . "\n"; break; case 'atom': $gen = 'WordPress'; @@ -1181,7 +1181,7 @@ function get_the_generator ( $type ) { $gen = ''; break; case 'export': - $gen = ''; + $gen = ''; break; } return apply_filters( "get_the_generator_{$type}", $gen, $type );