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

git-svn-id: http://svn.automattic.com/wordpress/trunk@4423 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2006-10-25 21:39:32 +00:00
parent 2775a8a552
commit ea1d50ffc3

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() {