summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x[-rw-r--r--]www/createfolder.php0
-rwxr-xr-x[-rw-r--r--]www/functions/func_content.php2
-rwxr-xr-x[-rw-r--r--]www/functions/func_failure.php2
-rwxr-xr-x[-rw-r--r--]www/functions/func_interface.php2
-rwxr-xr-x[-rw-r--r--]www/functions/func_invite.php2
-rwxr-xr-x[-rw-r--r--]www/functions/func_login.php2
-rwxr-xr-x[-rw-r--r--]www/functions/func_register.php2
-rwxr-xr-x[-rw-r--r--]www/functions/func_rewrite.php2
-rwxr-xr-x[-rw-r--r--]www/functions/func_select.php2
-rwxr-xr-x[-rw-r--r--]www/functions/func_user.php2
-rwxr-xr-x[-rw-r--r--]www/httperror.php2
-rwxr-xr-x[-rw-r--r--]www/include.php2
-rwxr-xr-x[-rw-r--r--]www/index.php2
-rwxr-xr-x[-rw-r--r--]www/invite.php0
-rwxr-xr-x[-rw-r--r--]www/login.php2
-rwxr-xr-x[-rw-r--r--]www/register.php2
-rwxr-xr-x[-rw-r--r--]www/setup.php2
-rwxr-xr-x[-rw-r--r--]www/static/alegreya_sans_sc.woffbin20792 -> 20792 bytes
-rwxr-xr-x[-rw-r--r--]www/static/footer.html0
-rwxr-xr-x[-rw-r--r--]www/static/header.html0
-rwxr-xr-x[-rw-r--r--]www/static/httperror.css0
-rwxr-xr-x[-rw-r--r--]www/static/img/logo.pngbin5427 -> 5427 bytes
-rwxr-xr-x[-rw-r--r--]www/static/img/logo.svg0
-rwxr-xr-x[-rw-r--r--]www/static/invite.css0
-rwxr-xr-x[-rw-r--r--]www/static/login.css0
-rwxr-xr-x[-rw-r--r--]www/static/register.css0
-rwxr-xr-x[-rw-r--r--]www/static/style.css0
-rwxr-xr-x[-rw-r--r--]www/upload.php2
28 files changed, 16 insertions, 16 deletions
diff --git a/www/createfolder.php b/www/createfolder.php
index 64d99a4..64d99a4 100644..100755
--- a/www/createfolder.php
+++ b/www/createfolder.php
diff --git a/www/functions/func_content.php b/www/functions/func_content.php
index 2536dcc..7e2281b 100644..100755
--- a/www/functions/func_content.php
+++ b/www/functions/func_content.php
@@ -1,4 +1,4 @@
-<?
+<?php
function get_content($db, $parentdir, $owner){
diff --git a/www/functions/func_failure.php b/www/functions/func_failure.php
index f7eb43f..19a8279 100644..100755
--- a/www/functions/func_failure.php
+++ b/www/functions/func_failure.php
@@ -1,4 +1,4 @@
-<?
+<?php
/* --PAGE NOT FOUND - 404 -- */
function get_404($working_path, $wrong_folder){
diff --git a/www/functions/func_interface.php b/www/functions/func_interface.php
index b543054..e0bc0e9 100644..100755
--- a/www/functions/func_interface.php
+++ b/www/functions/func_interface.php
@@ -1,4 +1,4 @@
-<?
+<?php
function show($db){
$owner = user($db, $_GET["name"]);
diff --git a/www/functions/func_invite.php b/www/functions/func_invite.php
index cc1118b..8741bf7 100644..100755
--- a/www/functions/func_invite.php
+++ b/www/functions/func_invite.php
@@ -1,4 +1,4 @@
-<?
+<?php
function invite($db){
if($_SERVER['REQUEST_METHOD'] == 'POST') {
diff --git a/www/functions/func_login.php b/www/functions/func_login.php
index 1b9188e..1cdd39d 100644..100755
--- a/www/functions/func_login.php
+++ b/www/functions/func_login.php
@@ -1,4 +1,4 @@
-<?
+<?php
function login($db){
if($_SERVER['REQUEST_METHOD'] == 'POST') {
diff --git a/www/functions/func_register.php b/www/functions/func_register.php
index 1d12e2b..690e5d6 100644..100755
--- a/www/functions/func_register.php
+++ b/www/functions/func_register.php
@@ -1,4 +1,4 @@
-<?
+<?php
function register($db){
if($_SERVER['REQUEST_METHOD'] == 'POST') {
diff --git a/www/functions/func_rewrite.php b/www/functions/func_rewrite.php
index ecc6db8..f915318 100644..100755
--- a/www/functions/func_rewrite.php
+++ b/www/functions/func_rewrite.php
@@ -1,4 +1,4 @@
-<?
+<?php
function rewrite($db){
/* test if first argument a username or folder */
diff --git a/www/functions/func_select.php b/www/functions/func_select.php
index 46afd46..204f2d7 100644..100755
--- a/www/functions/func_select.php
+++ b/www/functions/func_select.php
@@ -1,4 +1,4 @@
-<?
+<?php
function select($db, $owner){
if($_SESSION["login"] && $_SESSION["userid"] == $owner){ // TODO: Check if loged in user really the user who does the query - fix 12.3.14
diff --git a/www/functions/func_user.php b/www/functions/func_user.php
index 59e6dda..193d0e0 100644..100755
--- a/www/functions/func_user.php
+++ b/www/functions/func_user.php
@@ -1,4 +1,4 @@
-<?
+<?php
function account($db){
echo "loged in as: " . $_SESSION["username"];
$safe_name=SQLite3::escapeString("$_SESSION[username]");
diff --git a/www/httperror.php b/www/httperror.php
index 58ac0cc..a51e98d 100644..100755
--- a/www/httperror.php
+++ b/www/httperror.php
@@ -1,4 +1,4 @@
-<?
+<?php
/*
GET Parameter, die von nginx übergeben werden:
diff --git a/www/include.php b/www/include.php
index 5c9fdb4..ef1fe91 100644..100755
--- a/www/include.php
+++ b/www/include.php
@@ -1,4 +1,4 @@
-<?
+<?php
$func_dir = "functions/";
diff --git a/www/index.php b/www/index.php
index 46747dd..58217ef 100644..100755
--- a/www/index.php
+++ b/www/index.php
@@ -1,4 +1,4 @@
-<?
+<?php
session_start();
diff --git a/www/invite.php b/www/invite.php
index 8eb721d..8eb721d 100644..100755
--- a/www/invite.php
+++ b/www/invite.php
diff --git a/www/login.php b/www/login.php
index 74042ea..c2847b3 100644..100755
--- a/www/login.php
+++ b/www/login.php
@@ -1,4 +1,4 @@
-<?
+<?php
/*
$_GET Paramter für Oli von Max:
diff --git a/www/register.php b/www/register.php
index b68b26e..07f1535 100644..100755
--- a/www/register.php
+++ b/www/register.php
@@ -1,4 +1,4 @@
-<?
+<?php
/*
$_GET Paramter für Oli von Max:
diff --git a/www/setup.php b/www/setup.php
index 2e8c7fe..38b0434 100644..100755
--- a/www/setup.php
+++ b/www/setup.php
@@ -1,4 +1,4 @@
-<?
+<?php
/*
Sets up the database with the necessary tables. Add ?drop to drop _everything_!
diff --git a/www/static/alegreya_sans_sc.woff b/www/static/alegreya_sans_sc.woff
index 60e4c5f..60e4c5f 100644..100755
--- a/www/static/alegreya_sans_sc.woff
+++ b/www/static/alegreya_sans_sc.woff
Binary files differ
diff --git a/www/static/footer.html b/www/static/footer.html
index f5ceae8..f5ceae8 100644..100755
--- a/www/static/footer.html
+++ b/www/static/footer.html
diff --git a/www/static/header.html b/www/static/header.html
index 25eba61..25eba61 100644..100755
--- a/www/static/header.html
+++ b/www/static/header.html
diff --git a/www/static/httperror.css b/www/static/httperror.css
index 3567ae4..3567ae4 100644..100755
--- a/www/static/httperror.css
+++ b/www/static/httperror.css
diff --git a/www/static/img/logo.png b/www/static/img/logo.png
index cb99923..cb99923 100644..100755
--- a/www/static/img/logo.png
+++ b/www/static/img/logo.png
Binary files differ
diff --git a/www/static/img/logo.svg b/www/static/img/logo.svg
index 86a5c1e..86a5c1e 100644..100755
--- a/www/static/img/logo.svg
+++ b/www/static/img/logo.svg
diff --git a/www/static/invite.css b/www/static/invite.css
index 7ea92a3..7ea92a3 100644..100755
--- a/www/static/invite.css
+++ b/www/static/invite.css
diff --git a/www/static/login.css b/www/static/login.css
index 2685b4c..2685b4c 100644..100755
--- a/www/static/login.css
+++ b/www/static/login.css
diff --git a/www/static/register.css b/www/static/register.css
index 40034d2..40034d2 100644..100755
--- a/www/static/register.css
+++ b/www/static/register.css
diff --git a/www/static/style.css b/www/static/style.css
index 8b07d09..8b07d09 100644..100755
--- a/www/static/style.css
+++ b/www/static/style.css
diff --git a/www/upload.php b/www/upload.php
index 2858e72..4cc056c 100644..100755
--- a/www/upload.php
+++ b/www/upload.php
@@ -1,4 +1,4 @@
-<?
+<?php
session_start();