Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _includes/includes/index-content.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* be appended to the bottom of the list.
*/
function get_file_titles_by_index($base, $unsorted_items) {
$items = [];
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixes a background warning

$order = str_replace("\r\n", "\n", @file_get_contents($base.'__index.txt'));
$order = explode("\n", $order);
foreach($order as $item) {
Expand Down
5 changes: 1 addition & 4 deletions developer/language/guide/headers.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,4 @@ title: Header system stores
be associated (Deprecated)

>[!NOTE]
> The older header keywords are deprecated and will be not be supported for
> keyboards that target Keyman 19.0 or later.
> [system stores](stores#toc-system-stores) should be used in place of
> header keywords.
> The older header keywords are deprecated and will be not be supported for keyboards that target Keyman 19.0 or later. [system stores](stores#toc-system-stores) should be used in place of header keywords.
4 changes: 2 additions & 2 deletions developer/language/guide/stores.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ and will match any character in the specified store, remembering its
index.

```
any(storeName) + ... > ...
... + any(storeName) > ...
any(storeName) + >
+ any(storeName) >
```

The `index()` statement is used to look up a character in a store at the
Expand Down
Loading