59 lines
2.5 KiB
Diff
59 lines
2.5 KiB
Diff
diff -up ./wp-content/plugins/hello.php.dolly ./wp-content/plugins/hello.php
|
|
--- ./wp-content/plugins/hello.php.dolly 2018-11-16 00:38:48.000000000 +0100
|
|
+++ ./wp-content/plugins/hello.php 2018-12-12 13:54:41.867980830 +0100
|
|
@@ -6,41 +6,26 @@
|
|
/*
|
|
Plugin Name: Hello Dolly
|
|
Plugin URI: http://wordpress.org/plugins/hello-dolly/
|
|
-Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
|
|
+Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Richard M. Stallman: Free Software. When activated you will randomly see a lyric from the <cite>Free Software Song</cite> in the upper right of your admin screen on every page.
|
|
Author: Matt Mullenweg
|
|
Version: 1.7.1
|
|
Author URI: http://ma.tt/
|
|
*/
|
|
|
|
function hello_dolly_get_lyric() {
|
|
- /** These are the lyrics to Hello Dolly */
|
|
- $lyrics = "Hello, Dolly
|
|
-Well, hello, Dolly
|
|
-It's so nice to have you back where you belong
|
|
-You're lookin' swell, Dolly
|
|
-I can tell, Dolly
|
|
-You're still glowin', you're still crowin'
|
|
-You're still goin' strong
|
|
-I feel the room swayin'
|
|
-While the band's playin'
|
|
-One of our old favorite songs from way back when
|
|
-So, take her wrap, fellas
|
|
-Dolly, never go away again
|
|
-Hello, Dolly
|
|
-Well, hello, Dolly
|
|
-It's so nice to have you back where you belong
|
|
-You're lookin' swell, Dolly
|
|
-I can tell, Dolly
|
|
-You're still glowin', you're still crowin'
|
|
-You're still goin' strong
|
|
-I feel the room swayin'
|
|
-While the band's playin'
|
|
-One of our old favorite songs from way back when
|
|
-So, golly, gee, fellas
|
|
-Have a little faith in me, fellas
|
|
-Dolly, never go away
|
|
-Promise, you'll never go away
|
|
-Dolly'll never go away again";
|
|
+ // These are the lyrics to the Free Software Song
|
|
+ $lyrics = "Join us now and share the software;
|
|
+You'll be free, hackers, you'll be free.
|
|
+Hoarders may get piles of money,
|
|
+That is true, hackers, that is true.
|
|
+But they cannot help their neighbors;
|
|
+That ain't good, hackers, that ain't good.
|
|
+When we have enough free software
|
|
+At our call, hackers, at our call,
|
|
+We'll kick out those dirty licenses
|
|
+Ever more, hackers, ever more.
|
|
+Join us now and share the software;
|
|
+You'll be free, hackers, you'll be free.";
|
|
|
|
// Here we split it into lines
|
|
$lyrics = explode( "\n", $lyrics );
|