History log of /plugin/sqlite/Functions.php (Results 1 – 9 of 9)
Revision Date Author Comments
# 762252ad 15-May-2025 Andreas Gohr <gohr@cosmocode.de>

make PAGEISHIDDEN return an integer


# ba0d12e7 15-May-2025 Andreas Gohr <gohr@cosmocode.de>

separate hidden check from ACL check

GETACCESSLEVEL now no longer returns 0 for hidden pages but only does
ACL checking. Instead PAGEISHIDDEN can be used to do a hidden check
independently from ACL

separate hidden check from ACL check

GETACCESSLEVEL now no longer returns 0 for hidden pages but only does
ACL checking. Instead PAGEISHIDDEN can be used to do a hidden check
independently from ACL checking.

show more ...


# c76618fb 25-Jan-2024 Anna Dabrowska <dabrowska@cosmocode.de>

Rename methods to camelCase


# 14fe8e27 25-Jan-2024 Anna Dabrowska <dabrowska@cosmocode.de>

More style fixes


# a7a40fb2 25-Jan-2024 Anna Dabrowska <dabrowska@cosmocode.de>

Automatic code style fixes


# ded78afb 20-Jun-2023 Andreas Gohr <andi@splitbrain.org>

Readd custom GROUP_CONCAT ad GROUP_CONCAT_DISTINCT #78

Since using GROUP_CONCAT with a custom separator and the DISTINCT
keyword is still broken in sqlite (and might never be fixed), this
readds our

Readd custom GROUP_CONCAT ad GROUP_CONCAT_DISTINCT #78

Since using GROUP_CONCAT with a custom separator and the DISTINCT
keyword is still broken in sqlite (and might never be fixed), this
readds our custom implementation back. Using a different name than the
default allows developers to pick the native implementation when
adequate.

See also https://github.com/cosmocode/sqlite/pull/73#issuecomment-1588651185

This reverts commit ff1cb7aeb9f435cab452a4ebd057f46f4dcfc245.

show more ...


# da6f67b7 11-Jun-2023 Andreas Gohr <andi@splitbrain.org>

check access levels only when auth is available


# ff1cb7ae 16-May-2023 Andreas Gohr <andi@splitbrain.org>

drop custom GROUP_CONCAT implementation #78

This is supported natively in sqlite now


# 8da7d805 15-Mar-2023 Andreas Gohr <andi@splitbrain.org>

first go at refactoring

The goal is to completely deprecate the helper plugin in favor of
instantiating SQLiteDB