commit ef67c02b9c2655aac6e4ae354da6e0c527bdbead
parent 766512120e5c860107e4ed5c0cec1c540b5fc813
Author: Marcel Radzio <marcel@radzio-sh.de>
Date: Fri, 17 Oct 2014 11:12:09 +0200
auto commit
Diffstat:
2 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/install/index.php b/install/index.php
@@ -1,11 +1,11 @@
-/**
+<!--/**
* Module Check
*
* This script checks for requiered modules.
*
* @author Marcel Radzio <info@nordgedanken.de>
* @version 0.2 18/08/2014 18:45
-*/
+*/-->
<!Doctype html>
<html>
<head>
@@ -17,7 +17,9 @@
if (!dl('mysql.so')) {
print ("MySQL is not installed! Please install this module!");
exit;
- }else{print("MySQL has been successfully loaded");}
+ }else{
+ print("MySQL has been successfully loaded");
+ }
}
?>
<h1>Installer</h1>
@@ -61,10 +63,18 @@ unlink('../core/config/variables.config.php');
</tr>
<tr>
<td><p>Untertitel: </p></td>
- <td style="text-indent:40px;"><input type="text" name="admin_username" required="required" placeholder="Untertitel" maxlength="255" /></td>
+ <td style="text-indent:40px;"><input type="text" name="undertitle" required="required" placeholder="Untertitel" maxlength="255" /></td>
</tr>
<tr>
<td><p>Schlagwörter: </p></td>
+ <td style="text-indent:40px;"><input type="text" name="keywords" required="required" placeholder="Schlagwörter" maxlength="50" /></td>
+ </tr>
+ <tr>
+ <td><p>Admin Username: </p></td>
+ <td style="text-indent:40px;"><input type="text" name="admin_username" required="required" placeholder="Untertitel" maxlength="255" /></td>
+ </tr>
+ <tr>
+ <td><p>Admin Password: </p></td>
<td style="text-indent:40px;"><input type="text" name="admin_password" required="required" placeholder="Schlagwörter" maxlength="50" /></td>
</tr>
<tr>
diff --git a/upload.sh b/upload.sh
@@ -1,6 +1,6 @@
#!/bin/bash
git add .
git commit -m "auto commit"
-git remote add origin git@github.com:MTRNord/RPICMS.git
+git remote add origin git@github.com:RpicmsTeam/RPICMS.git
git push -f -u origin develop
sleep 30