Browse Source

Added proper unicode support for values read from mysql

Roman 10 years ago
parent
commit
f886793742
6 changed files with 11 additions and 1 deletions
  1. 3 0
      README
  2. 1 0
      assets/js/album.js
  3. 1 0
      assets/min/main.js
  4. 0 0
      assets/min/view.js
  5. 3 1
      php/modules/Album.php
  6. 3 0
      php/modules/Database.php

+ 3 - 0
README

@@ -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

+ 1 - 0
assets/js/album.js

@@ -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("");

File diff suppressed because it is too large
+ 1 - 0
assets/min/main.js


File diff suppressed because it is too large
+ 0 - 0
assets/min/view.js


+ 3 - 1
php/modules/Album.php

@@ -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);");
 

+ 3 - 0
php/modules/Database.php

@@ -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))

Some files were not shown because too many files changed in this diff