diff --git a/dev/SQL/template/script_sql.php b/dev/SQL/template/script_sql.php index 2276bd65f..f162dd14c 100644 --- a/dev/SQL/template/script_sql.php +++ b/dev/SQL/template/script_sql.php @@ -19,7 +19,7 @@ * along with NOALYSS; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -require_once NOALYSS_INCLUDE.'/database/noalyss_sql.class.php'; +require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php'; require_once NOALYSS_INCLUDE.'/lib/database.class.php'; diff --git a/include/database/anc_key_sql.class.php b/include/database/anc_key_sql.class.php index 58b7a2035..5a2bc2d0a 100644 --- a/include/database/anc_key_sql.class.php +++ b/include/database/anc_key_sql.class.php @@ -23,7 +23,7 @@ * @brief Class to manage distribution keys for SQL. * */ -require_once NOALYSS_INCLUDE.'/database/noalyss_sql.class.php'; +require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php'; /** diff --git a/include/database/default_menu_sql.class.php b/include/database/default_menu_sql.class.php index 02e8fbdba..4f3f5caff 100644 --- a/include/database/default_menu_sql.class.php +++ b/include/database/default_menu_sql.class.php @@ -23,7 +23,7 @@ * * @author dany */ -require_once NOALYSS_INCLUDE.'/database/noalyss_sql.class.php'; +require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php'; class Default_Menu_SQL extends Noalyss_SQL { diff --git a/include/database/menu_ref_sql.class.php b/include/database/menu_ref_sql.class.php index 312e4d0fc..f0eb8d673 100644 --- a/include/database/menu_ref_sql.class.php +++ b/include/database/menu_ref_sql.class.php @@ -27,7 +27,7 @@ */ require_once NOALYSS_INCLUDE.'/lib/database.class.php'; require_once NOALYSS_INCLUDE.'/lib/ac_common.php'; -require_once NOALYSS_INCLUDE.'/database/noalyss_sql.class.php'; +require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php'; /** * @brief Manage the table public.menu_ref diff --git a/include/database/profile_menu_sql.class.php b/include/database/profile_menu_sql.class.php index bd636bdab..a5979c8bb 100644 --- a/include/database/profile_menu_sql.class.php +++ b/include/database/profile_menu_sql.class.php @@ -30,7 +30,7 @@ */ require_once NOALYSS_INCLUDE.'/lib/database.class.php'; require_once NOALYSS_INCLUDE.'/lib/ac_common.php'; -require_once NOALYSS_INCLUDE.'/database/noalyss_sql.class.php'; +require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php'; /** * @brief Manage the table public.profile_menu diff --git a/include/database/profile_sql.class.php b/include/database/profile_sql.class.php index c4b397aaa..adbd7bf1d 100644 --- a/include/database/profile_sql.class.php +++ b/include/database/profile_sql.class.php @@ -30,7 +30,7 @@ */ require_once NOALYSS_INCLUDE.'/lib/database.class.php'; require_once NOALYSS_INCLUDE.'/lib/ac_common.php'; -require_once NOALYSS_INCLUDE.'/database/noalyss_sql.class.php'; +require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php'; /** * @brief Manage the table public.profile diff --git a/include/database/stock_goods_sql.class.php b/include/database/stock_goods_sql.class.php index 846ba0f4e..9fae50053 100644 --- a/include/database/stock_goods_sql.class.php +++ b/include/database/stock_goods_sql.class.php @@ -25,7 +25,7 @@ * @brief * */ -require_once NOALYSS_INCLUDE.'/database/noalyss_sql.class.php'; +require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php'; class Stock_Goods_Sql extends Noalyss_SQL { diff --git a/include/database/stock_sql.class.php b/include/database/stock_sql.class.php index 28192600d..2e56828f2 100644 --- a/include/database/stock_sql.class.php +++ b/include/database/stock_sql.class.php @@ -25,7 +25,7 @@ * @brief * */ -require_once NOALYSS_INCLUDE.'/database/noalyss_sql.class.php'; +require_once NOALYSS_INCLUDE.'/lib/noalyss_sql.class.php'; class Stock_Sql extends Noalyss_SQL { function __construct($cn,$p_id=-1) diff --git a/include/database/tag_sql.class.php b/include/database/tag_sql.class.php index d66df4a8a..07a93988c 100644 --- a/include/database/tag_sql.class.php +++ b/include/database/tag_sql.class.php @@ -1,7 +1,7 @@