functions.php
changeset 6 5f35ebc4f9bb
parent 5 9b96265b5918
child 8 a8d108f37363
--- a/functions.php	Sun Mar 23 22:44:52 2008 -0400
+++ b/functions.php	Sun Mar 23 23:11:56 2008 -0400
@@ -3,7 +3,7 @@
 /**
  * Utility functions
  * 
- * Web control interface script for Amarok
+ * Greyhound - real web management for Amarok
  * Copyright (C) 2008 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
@@ -24,7 +24,7 @@
 
 function burnout($msg)
 {
-  echo "\x1B[31;1m[WebControl] fatal: \x1B[37;1m";
+  echo "\x1B[31;1m[Greyhound] fatal: \x1B[37;1m";
   echo "$msg\x1B[0m\n";
   exit(1);
 }
@@ -36,7 +36,7 @@
 
 function status($msg)
 {
-  echo "\x1B[32;1m[WebControl] \x1B[32;0m$msg\x1B[0m\n";
+  echo "\x1B[32;1m[Greyhound] \x1B[32;0m$msg\x1B[0m\n";
 }
 
 /**