From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- srcs/phpmyadmin/license.php | 46 --------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 srcs/phpmyadmin/license.php (limited to 'srcs/phpmyadmin/license.php') diff --git a/srcs/phpmyadmin/license.php b/srcs/phpmyadmin/license.php deleted file mode 100644 index b5f9096..0000000 --- a/srcs/phpmyadmin/license.php +++ /dev/null @@ -1,46 +0,0 @@ -disable(); - -/** - * - */ -header('Content-type: text/plain; charset=utf-8'); - -$filename = LICENSE_FILE; - -// Check if the file is available, some distributions remove these. -if (@is_readable($filename)) { - readfile($filename); -} else { - printf( - __( - 'The %s file is not available on this system, please visit ' . - '%s for more information.' - ), - $filename, - 'https://www.phpmyadmin.net/' - ); -} -- cgit