--- parser3/src/classes/table.C 2024/10/27 17:50:59 1.369 +++ parser3/src/classes/table.C 2024/11/13 17:37:41 1.371 @@ -1,7 +1,7 @@ /** @file Parser: @b table parser class. - Copyright (c) 2001-2023 Art. Lebedev Studio (http://www.artlebedev.com) + Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com) Authors: Konstantin Morshnev , Alexandr Petrosian */ @@ -26,7 +26,7 @@ #include "pa_array.h" #include "pa_varray.h" -volatile const char * IDENT_TABLE_C="$Id: table.C,v 1.369 2024/10/27 17:50:59 moko Exp $"; +volatile const char * IDENT_TABLE_C="$Id: table.C,v 1.371 2024/11/13 17:37:41 moko Exp $"; // class @@ -1030,6 +1030,8 @@ static void _cells(Request& r, MethodPar const String* column_item=self_table.item(index); result_array+=column_item ? new VString(*column_item) : VString::empty(); } + + result_array.confirm_all_used(); r.write(result); }