Skip to content

Commit 5e15e6c

Browse files
committed
Fixed a lot of PHP errors and warnings. Replaced idna_convert.class.php with current version. Version bump to 1.12.php8.
1 parent 43a3c1c commit 5e15e6c

File tree

9 files changed

+30897
-8438
lines changed

9 files changed

+30897
-8438
lines changed

DefaultConf.php

Lines changed: 286 additions & 265 deletions
Large diffs are not rendered by default.

admin/Crypt.php

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
<?php
22

3-
/*
4-
*
5-
* $Revision: 42 $
6-
* $LastChangedDate: 2009-09-04 18:36:58 +0200 (Fr, 04. Sep 2009) $
7-
* $Author: arvid $
8-
*
9-
*/
10-
11-
3+
/*
4+
*
5+
* $Revision: 42 $
6+
* $LastChangedDate: 2009-09-04 18:36:58 +0200 (Fr, 04. Sep 2009) $
7+
* $Author: arvid $
8+
*
9+
*/
1210
class Crypt {
1311

14-
function encrypt($s)
15-
{
16-
return md5($s);
12+
function encrypt($s) {
13+
return $s === null ? null : md5($s);
1714
}
15+
1816
}
1917
?>

admin/categories_array.php

Lines changed: 802 additions & 801 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)