Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 1090 → Rev 1091

/web/acc/manager/lib/sql/create_user.php
1,4 → 1,4
<?php
<?php
if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php"))
include_once("../lib/sql/drivers/$config[sql_type]/functions.php");
else{
7,7 → 7,7
}
include_once('../lib/functions.php');
if ($config[sql_use_operators] == 'true'){
include("../lib/operators.php");
include_once("../lib/operators.php");
$text = ',op';
$passwd_op = ",':='";
}
16,7 → 16,7
$link = @da_sql_pconnect($config);
if ($link){
if (is_file("../lib/crypt/$config[general_encryption_method].php")){
include("../lib/crypt/$config[general_encryption_method].php");
include_once("../lib/crypt/$config[general_encryption_method].php");
/*Ajout en vue de l'impression des données (thank's to Geoffroy MUSITELLI)*/
$passwd_imp = $passwd;
/*Fin Ajout*/