fix php warnings
This commit is contained in:
parent
71635ab255
commit
84c63e69a3
12
common.php
12
common.php
|
@ -37,11 +37,15 @@
|
|||
{
|
||||
global $dir;
|
||||
$path = $dir . '/' . $title;
|
||||
$lastchanged = filemtime($path . '.md');
|
||||
$filename = $path . '.md';
|
||||
|
||||
if (file_exists($filename))
|
||||
{
|
||||
$lastchanged = filemtime($filename);
|
||||
$previous = $_POST['lastchanged'];
|
||||
if ((int)$lastchanged > (int)$previous)
|
||||
{
|
||||
$tempcontent = file_get_contents($path . '.md');
|
||||
$tempcontent = file_get_contents($filename);
|
||||
if ($tempcontent != $content)
|
||||
{
|
||||
$temptitle = $title . '_conflict_' . $lastchanged;
|
||||
|
@ -49,7 +53,9 @@
|
|||
array_unshift($_SESSION['index'], $dir . '/' . $temptitle);
|
||||
}
|
||||
}
|
||||
file_put_contents($path . '.md', $content);
|
||||
}
|
||||
|
||||
file_put_contents($filename, $content);
|
||||
removefromindex($title);
|
||||
array_unshift($_SESSION['index'], $path);
|
||||
}
|
||||
|
|
4
note.php
4
note.php
|
@ -2,6 +2,8 @@
|
|||
require('common.php');
|
||||
|
||||
// handle save actions
|
||||
if (count($_POST) > 0)
|
||||
{
|
||||
$title = $_POST['title'];
|
||||
$content = $_POST['content'];
|
||||
if (isset($_POST['save']) || isset($_POST['home']) || isset($_POST['download']) || isset($_POST['preview']))
|
||||
|
@ -44,9 +46,9 @@
|
|||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
// main
|
||||
|
||||
$title = '';
|
||||
$content = false;
|
||||
if (isset($_GET['new']))
|
||||
|
|
Loading…
Reference in New Issue