diff options
author | M.Gergo | 2018-07-06 11:14:41 +0200 |
---|---|---|
committer | M.Gergo | 2018-07-06 11:14:41 +0200 |
commit | 43de9af71f7f4ca5731b94a06d688ae8412ba427 (patch) | |
tree | 54835de1dfcda504c02da261f0dc26885aed2e89 /mayor-orig/www/update.php | |
parent | 50310b0e4513ee3fcce67351ae61e8fff851130e (diff) | |
download | mayor-43de9af71f7f4ca5731b94a06d688ae8412ba427.tar.gz mayor-43de9af71f7f4ca5731b94a06d688ae8412ba427.zip |
2018/Feb/28 -i állapot hozzáadva, mint a módosítások kiindulási állapota
Diffstat (limited to 'mayor-orig/www/update.php')
-rw-r--r-- | mayor-orig/www/update.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mayor-orig/www/update.php b/mayor-orig/www/update.php new file mode 100644 index 00000000..42d06efe --- /dev/null +++ b/mayor-orig/www/update.php @@ -0,0 +1,25 @@ +<?php +if (defined('_LOCKFILE') && @file_exists(_LOCKFILE)) { + echo '<?xml version="1.0" encoding="utf-8"?>'."\n"; + echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">'."\n"; + echo '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="hu">'."\n"; + echo '<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>MaYoR</title></head><body>'."\n"; + echo '<div>'."\n"; + echo '<h1>MaYoR software update</h1>'."\n"; + echo '<p>Hopp! Az automatikus frissítés épp fut, vagy a szolgáltatást a rendszerüzemeltető letiltotta.</p>'."\n"; + echo '<p>Oops! Automatic update process is running or the system administrator has locked down this service.</p>'."\n"; + echo '<p style="font-size:smaller;">'.date('Y-m-d H:i:s').'</p>'; + echo '</div>'."\n"; + +echo '<div>'; +$i=0; $i++; +//for ($i=0; $i<count(); $i++) { +// +//} +echo '</div>'; + + echo '</body></html>'; +} else { + header('index.php'); +} +?> |