mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
minor change
This commit is contained in:
parent
fb63787d10
commit
6af6771721
@ -138,6 +138,7 @@ switch ($action) {
|
||||
case 'folders':
|
||||
|
||||
$folders = execRequest('GET', 'folders');
|
||||
usort($folders, function($a, $b) { return strnatcmp($a['title'], $b['title']); });
|
||||
$pageParams['contentHtml'] = renderView('folders', array('folders' => $folders));
|
||||
break;
|
||||
|
||||
|
@ -6,6 +6,7 @@ CREATE TABLE `folders` (
|
||||
`owner_id` binary(16) NULL default NULL,
|
||||
`is_encrypted` tinyint(1) NOT NULL default '0',
|
||||
`encryption_method` int(11) NOT NULL default '0',
|
||||
`is_default` tinyint(1) NOT NULL default '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) CHARACTER SET=utf8;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user