@@ -3,3 +3,6 @@ Experimental fork of Lychee, a photo management system, that features a number o
* Faster photo browsing thanks to caching.
* Default sort order of albums is changed from new to old.
* Preserves scroll position when changing from albums to album and vice versa
+
+See http://github.com/electerious/Lychee for more details on Lychee
@@ -146,6 +146,7 @@ album = {
albumIDs.forEach(function(id, index, array) {
albums.json.num--;
view.albums.content.delete(id);
+ delete albums.json.content[id]
});
} else lychee.goto("");
@@ -6,6 +6,8 @@
# @copyright 2014 by Tobias Reich
###
+header('Content-Type: text/html; charset=UTF-8');
if (!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
@@ -392,7 +394,7 @@ class Album extends Module {
# Parse
if (strlen($title)>50) $title = substr($title, 0, 50);
-
# Execute query
$result = $this->database->query("UPDATE lychee_albums SET title = '$title' WHERE id IN ($this->albumIDs);");
@@ -23,6 +23,9 @@ class Database extends Module {
# Avoid sql injection on older MySQL versions by using GBK
if ($database->server_version<50500) $database->set_charset('GBK');
else $database->set_charset("utf8");
+ # Set unicode
+ $database->query('SET NAMES utf8;');
# Check database
if (!$database->select_db($name))