master
bernd webinterface => /webinterface

bernd authored 17 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

5) Written by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

9) This code is published under a 0BSD license.
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

10) 
11) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
12) */
bernd webinterface => /webinterface

bernd authored 17 years ago

13) 
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

14) require_once('config.php');
bernd Einige Dummheiten repariert...

bernd authored 14 years ago

15) require_once('inc/base.php');
bernd Mehr config-optionen und co...

bernd authored 14 years ago

16) $debugmode = (isset($_GET['debug']) && config('enable_debug'));
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

17) 
bernd webinterface => /webinterface

bernd authored 17 years ago

18) function DEBUG($str)
19) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

20)     global $debugmode;
21)     if ($debugmode) {
Hanno Böck Spaces between string conca...

Hanno Böck authored 5 months ago

22)         echo "<pre>" . htmlspecialchars(print_r($str, true)) . "</pre>\n";
bernd Menü-Includes sinnvoller /...

bernd authored 16 years ago

23)     }
bernd webinterface => /webinterface

bernd authored 17 years ago

24) }
25) 
bernd DEBUG-Ausgaben zentralisiert

bernd authored 16 years ago

26)