diff --git a/CHANGELOG b/CHANGELOG index f894ba1..5e6f4af 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -288,3 +288,7 @@ part entered in a lognote crashed php in logentry.php. - Fixed bug where the prompt to set flags on reference chain appeared even when no flags were available to select in logentry.php. + +5.3.2 - 2026-03-02 + - Fixed bug reported as Issue 2 where printing search results resulted in + the flags selection was being ignored. diff --git a/VERSION.txt b/VERSION.txt index c7cb131..84197c8 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.3.1 +5.3.2 diff --git a/database-initial.sql b/database-initial.sql index 5493d43..b646ed8 100644 --- a/database-initial.sql +++ b/database-initial.sql @@ -122,7 +122,7 @@ set autocommit = 0; INSERT INTO `configs` -VALUES (1, 'ol_version', '5.3.1'), +VALUES (1, 'ol_version', '5.3.2'), (2, 'log_name', 'OpenLog'), (3, 'banner', '1'), ( diff --git a/database-update.sh b/database-update.sh index 66d4380..323261f 100755 --- a/database-update.sh +++ b/database-update.sh @@ -147,4 +147,8 @@ echo "...done." # ---------- version 5.3.1 ------------ # Nothing to do +# ------------------------------------- + +# ---------- version 5.3.2 ------------ +# Nothing to do # ------------------------------------- \ No newline at end of file diff --git a/database-update.sql b/database-update.sql index 4e4e876..5429760 100644 --- a/database-update.sql +++ b/database-update.sql @@ -88,4 +88,9 @@ CREATE TABLE IF NOT EXISTS `reflinks` ( -- ---------- version 5.3.1 ------------- -- Update version number UPDATE configs SET confvalue = "5.3.1" WHERE confname = "ol_version"; +-- -------------------------------------- + +-- ---------- version 5.3.2 ------------- +-- Update version number +UPDATE configs SET confvalue = "5.3.2" WHERE confname = "ol_version"; -- -------------------------------------- \ No newline at end of file diff --git a/distfiles/CHANGELOG b/distfiles/CHANGELOG index 828b2b1..f94adfe 100644 --- a/distfiles/CHANGELOG +++ b/distfiles/CHANGELOG @@ -289,3 +289,6 @@ - Fixed bug where the prompt to set flags on reference chain appeared even when no flags were available to select in logentry.php. +5.3.2 - 2026-03-02 + - Fixed bug reported as Issue 2 where printing search results resulted in + the flags selection was being ignored. \ No newline at end of file diff --git a/distfiles/search.php b/distfiles/search.php index 3e89453..89a484d 100644 --- a/distfiles/search.php +++ b/distfiles/search.php @@ -34,7 +34,7 @@ $srchpname = $_REQUEST['srchpname'] ?? NULL; $srchploc = $_REQUEST['srchploc'] ?? NULL; $srchnha = $_REQUEST['srchnha'] ?? NULL; $srchrepord = $_REQUEST['srchrepord'] ?? NULL; -$srchflags = $_POST['srchflags'] ?? []; +$srchflags = $_REQUEST['srchflags'] ?? []; $target = $_REQUEST['target'] ?? ["log", "maintform", "part"]; $doparts = PARTS_FUNCTIONS; diff --git a/files-update.sh b/files-update.sh index fd71ced..e640bcb 100755 --- a/files-update.sh +++ b/files-update.sh @@ -52,4 +52,8 @@ fi # ---------- version 5.3.1 ------------- # No changes +# -------------------------------------- + +# ---------- version 5.3.2 ------------- +# No changes # -------------------------------------- \ No newline at end of file diff --git a/install.sh b/install.sh index 71a20f8..7f0f3da 100755 --- a/install.sh +++ b/install.sh @@ -8,7 +8,7 @@ APP_NAME="OpenLog" DEFAULT_DB_NAME="openlog" -APP_VERSION="5.3.1" +APP_VERSION="5.3.2" DOC_ROOT="/var/www" INSTALL_LOC="openlog" APACHE_CONF_DIR="/etc/apache2/conf-available"