From 60fe02bb4792f2238e3bb8d07a6f2d567fe8488d Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sun, 13 Apr 2025 11:57:26 -0400 Subject: [PATCH] Comment --- functions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions.php b/functions.php index 5d09ed67..671acedf 100644 --- a/functions.php +++ b/functions.php @@ -1618,6 +1618,8 @@ function display_folder_options($parent_folder_id, $client_id, $folder_location global $mysqli; $folder_location = intval($folder_location); + // 0 = Document Folders + // 1 = File Folders $sql_folders = mysqli_query($mysqli, "SELECT * FROM folders WHERE parent_folder = $parent_folder_id AND folder_location = $folder_location AND folder_client_id = $client_id ORDER BY folder_name ASC"); while ($row = mysqli_fetch_array($sql_folders)) {