3ef995c2108fe77d22c0b556fb9717cb848bc48f
bernd webinterface => /webinterface

bernd authored 19 years ago

1) <?php
Hanno Böck Add newlines before comment...

Hanno Böck authored 1 year ago

2) 
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 14 years ago

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

Hanno Böck authored 3 years ago

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

Bernd Wurst authored 14 years ago

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

Hanno Böck authored 3 years ago

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

Bernd Wurst authored 14 years ago

11) 
12) 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.
13) */
bernd webinterface => /webinterface

bernd authored 19 years ago

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

bernd authored 18 years ago

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

bernd authored 16 years ago

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

bernd authored 16 years ago

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

bernd authored 18 years ago

18) 
bernd webinterface => /webinterface

bernd authored 19 years ago

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

Hanno authored 7 years ago

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

Hanno Böck authored 2 years ago

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

bernd authored 18 years ago

24)     }
bernd webinterface => /webinterface

bernd authored 19 years ago

25) }
26) 
bernd DEBUG-Ausgaben zentralisiert

bernd authored 18 years ago

27)