You are not logged in.
Pages: 1
Topic closed
Voici les différents petits problèmes détectés dans la 0.68.1 et leurs corrections.
Here you will find all detected bugs in the 0.68.1 and their patchs
MoYo - Julien Dombre - Association INDEPNET
Contribute to GLPI : Support Contribute References Freshmeat
Offline
Suppression élément base de connaissances
Deletion of an item of the knowbase
https://dev.indepnet.net:8080/glpi/changeset/3841
front/knowbase.form.php line 112
$kb->delete($tab["ID"]);
----->
$kb->delete($tab);
MoYo - Julien Dombre - Association INDEPNET
Contribute to GLPI : Support Contribute References Freshmeat
Offline
Cron OCSNG does not work :
https://dev.indepnet.net:8080/glpi/changeset/3847
inc/cron.class.php line 106
if ($cfg_glpi["ocs_mode"]&&$cfg_glpi["cron_sync_number"]){
--->
if ($cfg_glpi["ocs_mode"]){
MoYo - Julien Dombre - Association INDEPNET
Contribute to GLPI : Support Contribute References Freshmeat
Offline
General cron in using GLPI does not work. Only index.php cron works:
https://dev.indepnet.net:8080/glpi/changeset/3848
inc/common.function.php line 369
echo "<div style=\"background-image: url('front/cron.php');\"></div>";
---->
if (ereg("front",$_SERVER['PHP_SELF']))
echo "<div style=\"background-image: url('cron.php');\"></div>";
else echo "<div style=\"background-image: url('front/cron.php');\"></div>";
MoYo - Julien Dombre - Association INDEPNET
Contribute to GLPI : Support Contribute References Freshmeat
Offline
Mise à jour massive de l'entreprise des informations financière
Massive Update of the enterprise of the infocoms
ajax/dropdownMassiveActionField.php 88
case "glpi_enterprises_infocoms": // Infocoms enterprises
dropdown("glpi_enterprises","FK_enterprise");
break;
----->
case "glpi_enterprises_infocoms": // Infocoms enterprises
dropdown("glpi_enterprises","FK_enterprise");
echo "<input type='hidden' name='field' value='FK_enterprise'>";
$FIELDNAME_PRINTED=true;
break;
MoYo - Julien Dombre - Association INDEPNET
Contribute to GLPI : Support Contribute References Freshmeat
Offline
Pages: 1
Topic closed