Skip to content

Commit

Permalink
Merge pull request #3 from azett/master
Browse files Browse the repository at this point in the history
moziloCMS 1.12.php8
  • Loading branch information
marusti committed Jan 9, 2023
2 parents 43a3c1c + fba9690 commit a4fc779
Show file tree
Hide file tree
Showing 11 changed files with 32,514 additions and 9,965 deletions.
551 changes: 286 additions & 265 deletions DefaultConf.php

Large diffs are not rendered by default.

22 changes: 10 additions & 12 deletions admin/Crypt.php
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
<?php

/*
*
* $Revision: 42 $
* $LastChangedDate: 2009-09-04 18:36:58 +0200 (Fr, 04. Sep 2009) $
* $Author: arvid $
*
*/


/*
*
* $Revision: 42 $
* $LastChangedDate: 2009-09-04 18:36:58 +0200 (Fr, 04. Sep 2009) $
* $Author: arvid $
*
*/
class Crypt {

function encrypt($s)
{
return md5($s);
function encrypt($s) {
return $s === null ? null : md5($s);
}

}
?>
1,603 changes: 802 additions & 801 deletions admin/categories_array.php

Large diffs are not rendered by default.

0 comments on commit a4fc779

Please sign in to comment.