emergency Hello Dolly surgery. Crisis averted! Props joti. fixes #3282

git-svn-id: https://develop.svn.wordpress.org/trunk@4423 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith
2006-10-25 21:39:32 +00:00
parent 96b6366037
commit f43cca3e1d
+1 -1
View File
@@ -41,7 +41,7 @@ Dolly'll never go away again";
// Here we split it into lines
$lyrics = explode("\n", $lyrics);
// And then randomly choose a line
$chosen = wptexturize( $lyrics[ mt_rand(0, count($lyrics) ) ] );
$chosen = wptexturize( $lyrics[ mt_rand(0, count($lyrics) - 1) ] );
// This just echoes the chosen line, we'll position it later
function hello_dolly() {