';
- print '';
+ print '';
+ // autosuggest from existing account types if found
+ print '';
print '
';
// Category
diff --git a/htdocs/core/db/DoliDB.class.php b/htdocs/core/db/DoliDB.class.php
index b93a3f40cea..8c62390f447 100644
--- a/htdocs/core/db/DoliDB.class.php
+++ b/htdocs/core/db/DoliDB.class.php
@@ -321,6 +321,7 @@ abstract class DoliDB implements Database
* Dont add LIMIT to your query, it will be added by this method
* @param string $sql the sql query string
* @return bool| object
+ * @deprecated
*/
public function getRow($sql)
{
@@ -338,8 +339,9 @@ abstract class DoliDB implements Database
* return all results from query as an array of objects
* Note : This method executes a given SQL query and retrieves all row of results as an array of objects. It should only be used with SELECT queries
* be carefull with this method use it only with some limit of results to avoid performences loss
- * @param string $sql the sql query string
- * @return bool| array
+ * @param string $sql the sql query string
+ * @return bool| array
+ * @deprecated
*/
public function getRows($sql)
{