Compare commits

..

No commits in common. "0b10cefcede2fb65508d2a896ddb9cb01cb089ae" and "79c0b0839715054639c073341704e508d5b895aa" have entirely different histories.

2 changed files with 3 additions and 6 deletions

View File

@ -3,7 +3,7 @@
function cleanstring($string)
{
return iconv('UTF-8', 'UTF-8//TRANSLIT//IGNORE', strtolower($string));
return iconv('UTF-8', 'ASCII//TRANSLIT//IGNORE', strtolower($string));
}
function downloadall()

View File

@ -142,7 +142,7 @@
<input type="submit" name="download" value="download" accesskey="d">
<input type="submit" name="delete" value="delete">
<input hidden name="lastchanged" value="<?php echo $lastchanged; ?>">
<div><span>#&nbsp;</span><input autocomplete="off" class="title" name="title" value="<?php echo $title; ?>"></div>
<div># <input autocomplete="off" class="title" name="title" value="<?php echo $title; ?>"></div>
</div>
<div class="editor">
<textarea rows="<?php echo $rows; ?>" autofocus name="content" spellcheck="false"><?php echo $content; ?></textarea>
@ -159,10 +159,7 @@
<div <?php if(!isset($_GET['preview'])) echo 'hidden'; ?>>
<div><a class="grey" href="note.php?title=<?php echo $title; ?>">back</a></div>
<?php
if (isset($_GET['preview']))
{
echo computepreview($title, $content);
}
echo computepreview($title, $content);
?>
</div>
</body>