changeset 35:c969f9e8264a

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 02 Jan 2013 04:37:31 +0200
parents 8ecf7c04a837
children ace577c92a32
files mconfig.inc.php.example msite.inc.php
diffstat 2 files changed, 0 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/mconfig.inc.php.example	Sat Dec 22 21:32:28 2012 +0200
+++ b/mconfig.inc.php.example	Wed Jan 02 04:37:31 2013 +0200
@@ -26,8 +26,4 @@
 $pageCharset = "utf-8";
 $pageCSS = "fap.css";
 
-$specURLs = array(
-  "irc" => array("irc://#fap2022@ircnet", "#fap2022 @ IRCNet"),
-);
-
 ?>
\ No newline at end of file
--- a/msite.inc.php	Sat Dec 22 21:32:28 2012 +0200
+++ b/msite.inc.php	Wed Jan 02 04:37:31 2013 +0200
@@ -86,22 +86,6 @@
 }
 
 
-function stSpecURL($id)
-{
-  global $specURLs;
-  if (isset($specURLs[$id]))
-    return "<a href=\"".$specURLs[$id][0]."\">".$specURLs[$id][1]."</a>";
-  else
-    return "";
-}
-
-
-function stPrintSpecURL($id)
-{
-  echo stSpecURL($id);
-}
-
-
 function dhentities($str)
 {
   return str_replace(array("&lt;","&gt;"), array("<", ">"), htmlentities($str, ENT_NOQUOTES, "UTF-8"));