Initial commit

This commit is contained in:
root
2020-08-17 19:16:42 -04:00
commit 61584e0eb2
600 changed files with 50518 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?php
// addnews ready
// translator ready
// mail ready
require_once("lib/modules.php");
function holidayize($text,$type='unknown'){
global $session;
if (!isset($session['user']['prefs']['ihavenocheer']))
$session['user']['prefs']['ihavenocheer'] = 0;
if ($session['user']['prefs']['ihavenocheer']) {
return $text;
}
$args = array('text'=>$text,'type'=>$type);
$args = modulehook("holiday", $args);
$text = $args['text'];
return $text;
}
?>