More log
This commit is contained in:
parent
6b5d12ce83
commit
02a4e8e1e0
@ -84,7 +84,7 @@ print_fiche_titre($langs->trans("MembersSetup"),$linkback,'setup');
|
|||||||
print "<br>";
|
print "<br>";
|
||||||
|
|
||||||
|
|
||||||
print_fiche_titre($langs->trans("MemberMainOptions"));
|
print_fiche_titre($langs->trans("MemberMainOptions"),'','');
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td>'.$langs->trans("Description").'</td>';
|
print '<td>'.$langs->trans("Description").'</td>';
|
||||||
@ -167,13 +167,13 @@ if ($conf->global->MAIN_FEATURES_LEVEL >= 1)
|
|||||||
'ADHERENT_MAILMAN_UNSUB_URL',
|
'ADHERENT_MAILMAN_UNSUB_URL',
|
||||||
'ADHERENT_MAILMAN_URL'
|
'ADHERENT_MAILMAN_URL'
|
||||||
);
|
);
|
||||||
print_fiche_titre("Mailman - Systeme de mailing listes",$lien);
|
print_fiche_titre("Mailman - Systeme de mailing listes",$lien,'');
|
||||||
form_constantes($constantes);
|
form_constantes($constantes);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$lien='<a href="adherent.php?action=set&value=1&name=ADHERENT_USE_MAILMAN">'.$langs->trans("Activate").'</a>';
|
$lien='<a href="adherent.php?action=set&value=1&name=ADHERENT_USE_MAILMAN">'.$langs->trans("Activate").'</a>';
|
||||||
print_fiche_titre("Mailman - Systeme de mailing listes",$lien);
|
print_fiche_titre("Mailman - Systeme de mailing listes",$lien,'');
|
||||||
}
|
}
|
||||||
|
|
||||||
print "<hr>\n";
|
print "<hr>\n";
|
||||||
@ -196,13 +196,13 @@ if ($conf->global->MAIN_FEATURES_LEVEL >= 1)
|
|||||||
'ADHERENT_SPIP_USER',
|
'ADHERENT_SPIP_USER',
|
||||||
'ADHERENT_SPIP_PASS'
|
'ADHERENT_SPIP_PASS'
|
||||||
);
|
);
|
||||||
print_fiche_titre("SPIP - Systeme de publication en ligne",$lien);
|
print_fiche_titre("SPIP - Systeme de publication en ligne",$lien,'');
|
||||||
form_constantes($constantes);
|
form_constantes($constantes);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$lien='<a href="adherent.php?action=set&value=1&name=ADHERENT_USE_SPIP">'.$langs->trans("Activate").'</a>';
|
$lien='<a href="adherent.php?action=set&value=1&name=ADHERENT_USE_SPIP">'.$langs->trans("Activate").'</a>';
|
||||||
print_fiche_titre("SPIP - Systeme de publication en ligne",$lien);
|
print_fiche_titre("SPIP - Systeme de publication en ligne",$lien,'');
|
||||||
}
|
}
|
||||||
|
|
||||||
print "<hr>\n";
|
print "<hr>\n";
|
||||||
@ -224,7 +224,7 @@ $constantes=array(
|
|||||||
'ADHERENT_CARD_FOOTER_TEXT',
|
'ADHERENT_CARD_FOOTER_TEXT',
|
||||||
'ADHERENT_ETIQUETTE_TYPE'
|
'ADHERENT_ETIQUETTE_TYPE'
|
||||||
);
|
);
|
||||||
print_fiche_titre("Autres variables globales");
|
print_fiche_titre($langs->trans("Other"),'','');
|
||||||
|
|
||||||
print $langs->trans("FollowingConstantsWillBeSubstituted").'<br>';
|
print $langs->trans("FollowingConstantsWillBeSubstituted").'<br>';
|
||||||
print '%DOL_MAIN_URL_ROOT%, %ID%, %PRENOM%, %NOM%, %LOGIN%, %PASSWORD%,';
|
print '%DOL_MAIN_URL_ROOT%, %ID%, %PRENOM%, %NOM%, %LOGIN%, %PASSWORD%,';
|
||||||
|
|||||||
@ -359,7 +359,7 @@ function dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $not
|
|||||||
|
|
||||||
//dolibarr_syslog("dolibarr_set_const name=$name, value=$value");
|
//dolibarr_syslog("dolibarr_set_const name=$name, value=$value");
|
||||||
$sql = "DELETE FROM llx_const WHERE name = '".addslashes($name)."';";
|
$sql = "DELETE FROM llx_const WHERE name = '".addslashes($name)."';";
|
||||||
dolibarr_syslog("admin.lib::dolibarr_set_const sql=".$sql);
|
dolibarr_syslog("admin.lib::dolibarr_set_const sql=".$sql, LOG_DEBUG);
|
||||||
$resql=$db->query($sql);
|
$resql=$db->query($sql);
|
||||||
|
|
||||||
if (strcmp($value,'')) // true if different. Must work for $value='0' or $value=0
|
if (strcmp($value,'')) // true if different. Must work for $value='0' or $value=0
|
||||||
@ -367,7 +367,7 @@ function dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $not
|
|||||||
$sql = "INSERT INTO llx_const(name,value,type,visible,note)";
|
$sql = "INSERT INTO llx_const(name,value,type,visible,note)";
|
||||||
$sql.= " VALUES ('".$name."','".addslashes($value)."','".$type."',".$visible.",'".addslashes($note)."')";
|
$sql.= " VALUES ('".$name."','".addslashes($value)."','".$type."',".$visible.",'".addslashes($note)."')";
|
||||||
|
|
||||||
dolibarr_syslog("admin.lib::dolibarr_set_const sql=".$sql);
|
dolibarr_syslog("admin.lib::dolibarr_set_const sql=".$sql, LOG_DEBUG);
|
||||||
$resql=$db->query($sql);
|
$resql=$db->query($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -379,7 +379,9 @@ function dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $not
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$db->rollback();
|
$this->error=$db->lasterror();
|
||||||
|
dolibarr_syslog("admin.lib::dolibarr_set_const ".$this->error, LOG_ERR);
|
||||||
|
$db->rollback();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user