From 90e80cc3144d05ceedb8256b6667bc02b55660da Mon Sep 17 00:00:00 2001 From: sparkyx Date: Thu, 30 Apr 2026 16:33:25 +0200 Subject: [PATCH] Manage_Table get array with all errors --- include/lib/manage_table_sql.class.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/lib/manage_table_sql.class.php b/include/lib/manage_table_sql.class.php index 2d851f5d7..aeac50ed1 100644 --- a/include/lib/manage_table_sql.class.php +++ b/include/lib/manage_table_sql.class.php @@ -175,6 +175,13 @@ class Manage_Table_SQL $this->cssclass="inner_box"; } + /** + * @brief returns an array of errors : key= column name + * @return type + */ + function get_aerror() { + return $this->aerror; + } function setCssClass($p_class) { $this->cssclass=$p_class; }