diff --git a/ChangeLog b/ChangeLog index c6846787754..1946c2df9dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ English Dolibarr ChangeLog ***** ChangeLog for 3.7 compared to 3.6.* ***** For users: +- New: On contact list can set filter on both active and not active (no more exclusive select). - New: Each user can include its own external ics calendar into dolibarr agenda view. - New: Intervention documents are now available in ECM module. - New: Can attach supplier order to a customer order. @@ -44,6 +45,7 @@ For users: - New: Enable supplier price log table - New: [ task #1204 ] add a External reference to contract - New: [ task #1218 ] Can drag and drop an event from calendar to change its day. +- New: Optimize size of image static resources. - Fix: [ bug #1487 ] PAYMENT_DELETE trigger does not intercept trigger action - Fix: [ bug #1470, #1472, #1473] User trigger problem - Fix: [ bug #1489, #1491 ] Intervention trigger problem @@ -79,6 +81,9 @@ For developers: - New: Added hook "formConfirm" and "doActions" for supplier invoice card - New: [ task #1511, #1426 ] Added hook "doActions" for supplier card and supplier order card - New: renamed table llx_c_pays to llx_c_country & libelle field to label +- Qual: Renamed table llx_c_civilite into llx_c_civility + field civilite into label in the same table + and field civilite into civility in other table WARNING: Following change may create regression for some external modules, but was necessary to make Dolibarr better: @@ -86,6 +91,8 @@ Dolibarr better: - Changed the way parameters are provided to scripts sync_xxx_ldap2dolibarr.php - Some field into database wwere renamed from "libelle" to "label". - Table llx_c_pays were renamed into llx_c_country. +- Triggers *_BUILDDOC are removed. Building a doc is not a business event. For action after + creation of a pdf or odt, hook "afterPDFCreation" or "afterODTCreation" must be used instead. ***** ChangeLog for 3.6 compared to 3.5.* ***** diff --git a/dev/optimize_images.sh b/dev/optimize_images.sh new file mode 100755 index 00000000000..616eec75757 --- /dev/null +++ b/dev/optimize_images.sh @@ -0,0 +1,195 @@ +#!/bin/bash +# Borrowed from https://gist.github.com/lgiraudel/6065155 +# Inplace mode added by Raphaƫl Doursenaud + +PROGNAME=${0##*/} +INPUT='' +QUIET='0' +NOSTATS='0' +INPLACE='0' +max_input_size=0 +max_output_size=0 + +usage() +{ + cat </dev/null + rm -fr $2.firstpass + fi + if [ "${1##*.}" = "jpg" -o "${1##*.}" = "jpeg" ]; then + jpegtran -copy none -progressive $1 > $2 + fi + + output_file_size=$(stat -c%s "$2") + max_output_size=$(expr $max_output_size + $output_file_size) +} + +get_max_file_length() +{ + local maxlength=0 + + IMAGES=$(find $INPUT -regextype posix-extended -regex '.*\.(jpg|jpeg|png)' | grep -v $OUTPUT) + + for CURRENT_IMAGE in $IMAGES; do + filename=$(basename "$CURRENT_IMAGE") + if [[ ${#filename} -gt $maxlength ]]; then + maxlength=${#filename} + fi + done + + echo "$maxlength" +} + +main() +{ + # If $INPUT is empty, then we use current directory + if [[ "$INPUT" == "" ]]; then + INPUT=$(pwd) + fi + + # If $OUTPUT is empty, then we use the directory "output" in the current directory + if [[ "$OUTPUT" == "" ]]; then + OUTPUT=$(pwd)/output + fi + # If inplace, we use /tmp for output + if [[ "$INPLACE" == "1" ]]; then + OUTPUT='/tmp/optimize' + fi + + # We create the output directory + mkdir -p $OUTPUT + + # To avoid some troubles with filename with spaces, we store the current IFS (Internal File Separator)... + SAVEIFS=$IFS + # ...and we set a new one + IFS=$(echo -en "\n\b") + + max_filelength=`get_max_file_length` + pad=$(printf '%0.1s' "."{1..600}) + sDone=' [ DONE ]' + linelength=$(expr $max_filelength + ${#sDone} + 5) + + # Search of all jpg/jpeg/png in $INPUT + # We remove images from $OUTPUT if $OUTPUT is a subdirectory of $INPUT + IMAGES=$(find $INPUT -regextype posix-extended -regex '.*\.(jpg|jpeg|png)' | grep -v $OUTPUT) + + if [ "$QUIET" == "0" ]; then + echo --- Optimizing $INPUT --- + echo + fi + for CURRENT_IMAGE in $IMAGES; do + filename=$(basename $CURRENT_IMAGE) + if [ "$QUIET" == "0" ]; then + printf '%s ' "$filename" + printf '%*.*s' 0 $((linelength - ${#filename} - ${#sDone} )) "$pad" + fi + + optimize_image $CURRENT_IMAGE $OUTPUT/$filename + + # Replace file + if [[ "$INPLACE" == "1" ]]; then + mv $OUTPUT/$filename $CURRENT_IMAGE + fi + + if [ "$QUIET" == "0" ]; then + printf '%s\n' "$sDone" + fi + done + + # Cleanup + if [[ "$INPLACE" == "1" ]]; then + rm -rf $OUTPUT + fi + + # we restore the saved IFS + IFS=$SAVEIFS + + if [ "$NOSTATS" == "0" -a "$QUIET" == "0" ]; then + echo + echo "Input: " $(human_readable_filesize $max_input_size) + echo "Output: " $(human_readable_filesize $max_output_size) + space_saved=$(expr $max_input_size - $max_output_size) + echo "Space save: " $(human_readable_filesize $space_saved) + fi +} + +human_readable_filesize() +{ +echo -n $1 | awk 'function human(x) { + s=" b Kb Mb Gb Tb" + while (x>=1024 && length(s)>1) + {x/=1024; s=substr(s,4)} + s=substr(s,1,4) + xf=(s==" b ")?"%5d ":"%.2f" + return sprintf( xf"%s", x, s) + } + {gsub(/^[0-9]+/, human($1)); print}' +} + +SHORTOPTS="h,i:,o:,q,s,p" +LONGOPTS="help,input:,output:,quiet,no-stats,inplace" +ARGS=$(getopt -s bash --options $SHORTOPTS --longoptions $LONGOPTS --name $PROGNAME -- "$@") + +eval set -- "$ARGS" +while true; do + case $1 in + -h|--help) + usage + exit 0 + ;; + -i|--input) + shift + INPUT=$1 + ;; + -o|--output) + shift + OUTPUT=$1 + ;; + -q|--quiet) + QUIET='1' + ;; + -s|--no-stats) + NOSTATS='1' + ;; + -p|--inplace) + INPLACE='1' + ;; + --) + shift + break + ;; + *) + shift + break + ;; + esac + shift +done + +main + diff --git a/htdocs/adherents/class/adherent.class.php b/htdocs/adherents/class/adherent.class.php index 5268018d2e9..ce3ad4905a7 100644 --- a/htdocs/adherents/class/adherent.class.php +++ b/htdocs/adherents/class/adherent.class.php @@ -425,7 +425,7 @@ class Adherent extends CommonObject $this->db->begin(); $sql = "UPDATE ".MAIN_DB_PREFIX."adherent SET"; - $sql.= " civilite = ".(!is_null($this->civility_id)?"'".$this->civility_id."'":"null"); + $sql.= " civility = ".(!is_null($this->civility_id)?"'".$this->civility_id."'":"null"); $sql.= ", firstname = ".($this->firstname?"'".$this->db->escape($this->firstname)."'":"null"); $sql.= ", lastname=" .($this->lastname?"'".$this->db->escape($this->lastname)."'":"null"); $sql.= ", login=" .($this->login?"'".$this->db->escape($this->login)."'":"null"); @@ -1048,7 +1048,7 @@ class Adherent extends CommonObject { global $langs; - $sql = "SELECT d.rowid, d.ref_ext, d.civilite as civility_id, d.firstname, d.lastname, d.societe as company, d.fk_soc, d.statut, d.public, d.address, d.zip, d.town, d.note,"; + $sql = "SELECT d.rowid, d.ref_ext, d.civility as civility_id, d.firstname, d.lastname, d.societe as company, d.fk_soc, d.statut, d.public, d.address, d.zip, d.town, d.note,"; $sql.= " d.email, d.skype, d.phone, d.phone_perso, d.phone_mobile, d.login, d.pass,"; $sql.= " d.photo, d.fk_adherent_type, d.morphy, d.entity,"; $sql.= " d.datec as datec,"; @@ -1539,7 +1539,7 @@ class Adherent extends CommonObject $code=(empty($this->civility_id)?'':$this->civility_id); if (empty($code)) return ''; - return $langs->getLabelFromKey($this->db, "Civility".$code, "c_civilite", "code", "civilite", $code); + return $langs->getLabelFromKey($this->db, "Civility".$code, "c_civility", "code", "label", $code); } /** diff --git a/htdocs/admin/dict.php b/htdocs/admin/dict.php index e81cf80a0fd..28573c63677 100644 --- a/htdocs/admin/dict.php +++ b/htdocs/admin/dict.php @@ -78,7 +78,7 @@ $tabname[1] = MAIN_DB_PREFIX."c_forme_juridique"; $tabname[2] = MAIN_DB_PREFIX."c_departements"; $tabname[3] = MAIN_DB_PREFIX."c_regions"; $tabname[4] = MAIN_DB_PREFIX."c_country"; -$tabname[5] = MAIN_DB_PREFIX."c_civilite"; +$tabname[5] = MAIN_DB_PREFIX."c_civility"; $tabname[6] = MAIN_DB_PREFIX."c_actioncomm"; $tabname[7] = MAIN_DB_PREFIX."c_chargesociales"; $tabname[8] = MAIN_DB_PREFIX."c_typent"; @@ -136,7 +136,7 @@ $tabsql[1] = "SELECT f.rowid as rowid, f.code, f.libelle, c.code as country_code $tabsql[2] = "SELECT d.rowid as rowid, d.code_departement as code, d.nom as libelle, d.fk_region as region_id, r.nom as region, c.code as country_code, c.label as country, d.active FROM ".MAIN_DB_PREFIX."c_departements as d, ".MAIN_DB_PREFIX."c_regions as r, ".MAIN_DB_PREFIX."c_country as c WHERE d.fk_region=r.code_region and r.fk_pays=c.rowid and r.active=1 and c.active=1"; $tabsql[3] = "SELECT r.rowid as rowid, r.code_region as code, r.nom as libelle, r.fk_pays as country_id, c.code as country_code, c.label as country, r.active FROM ".MAIN_DB_PREFIX."c_regions as r, ".MAIN_DB_PREFIX."c_country as c WHERE r.fk_pays=c.rowid and c.active=1"; $tabsql[4] = "SELECT rowid as rowid, code, label, active FROM ".MAIN_DB_PREFIX."c_country"; -$tabsql[5] = "SELECT c.rowid as rowid, c.code as code, c.civilite AS libelle, c.active FROM ".MAIN_DB_PREFIX."c_civilite AS c"; +$tabsql[5] = "SELECT c.rowid as rowid, c.code as code, c.label, c.active FROM ".MAIN_DB_PREFIX."c_civility AS c"; $tabsql[6] = "SELECT a.id as rowid, a.code as code, a.libelle AS libelle, a.type, a.active, a.module, a.position FROM ".MAIN_DB_PREFIX."c_actioncomm AS a"; $tabsql[7] = "SELECT a.id as rowid, a.code as code, a.libelle AS libelle, a.accountancy_code as accountancy_code, a.deductible, c.code as country_code, c.label as country, a.fk_pays as country_id, a.active FROM ".MAIN_DB_PREFIX."c_chargesociales AS a, ".MAIN_DB_PREFIX."c_country as c WHERE a.fk_pays=c.rowid and c.active=1"; $tabsql[8] = "SELECT t.id as rowid, t.code as code, t.libelle, t.fk_country as country_id, c.code as country_code, c.label as country, t.active FROM ".MAIN_DB_PREFIX."c_typent as t LEFT JOIN ".MAIN_DB_PREFIX."c_country as c ON t.fk_country=c.rowid"; @@ -165,7 +165,7 @@ $tabsqlsort[1] ="country ASC, code ASC"; $tabsqlsort[2] ="country ASC, code ASC"; $tabsqlsort[3] ="country ASC, code ASC"; $tabsqlsort[4] ="code ASC"; -$tabsqlsort[5] ="libelle ASC"; +$tabsqlsort[5] ="label ASC"; $tabsqlsort[6] ="a.type ASC, a.module ASC, a.position ASC, a.code ASC"; $tabsqlsort[7] ="country ASC, code ASC, a.libelle ASC"; $tabsqlsort[8] ="country DESC, libelle ASC"; @@ -194,7 +194,7 @@ $tabfield[1] = "code,libelle,country"; $tabfield[2] = "code,libelle,region_id,region,country"; // "code,libelle,region,country_code-country" $tabfield[3] = "code,libelle,country_id,country"; $tabfield[4] = "code,label"; -$tabfield[5] = "code,libelle"; +$tabfield[5] = "code,label"; $tabfield[6] = "code,libelle,type,position"; $tabfield[7] = "code,libelle,country_id,country,accountancy_code,deductible"; $tabfield[8] = "code,libelle,country_id,country"; @@ -223,7 +223,7 @@ $tabfieldvalue[1] = "code,libelle,country"; $tabfieldvalue[2] = "code,libelle,region"; // "code,libelle,region" $tabfieldvalue[3] = "code,libelle,country"; $tabfieldvalue[4] = "code,label"; -$tabfieldvalue[5] = "code,libelle"; +$tabfieldvalue[5] = "code,label"; $tabfieldvalue[6] = "code,libelle,type,position"; $tabfieldvalue[7] = "code,libelle,country,accountancy_code,deductible"; $tabfieldvalue[8] = "code,libelle,country"; @@ -252,7 +252,7 @@ $tabfieldinsert[1] = "code,libelle,fk_pays"; $tabfieldinsert[2] = "code_departement,nom,fk_region"; $tabfieldinsert[3] = "code_region,nom,fk_pays"; $tabfieldinsert[4] = "code,label"; -$tabfieldinsert[5] = "code,civilite"; +$tabfieldinsert[5] = "code,label"; $tabfieldinsert[6] = "code,libelle,type,position"; $tabfieldinsert[7] = "code,libelle,fk_pays,accountancy_code,deductible"; $tabfieldinsert[8] = "code,libelle,fk_country"; @@ -1045,7 +1045,7 @@ if ($id) $key=$langs->trans(strtoupper($obj->code)); $valuetoshow=($key != strtoupper($obj->code)?$key:$obj->$fieldlist[$field]); } - else if ($fieldlist[$field]=='libelle' && $tabname[$id]==MAIN_DB_PREFIX.'c_civilite') { + else if ($fieldlist[$field]=='label' && $tabname[$id]==MAIN_DB_PREFIX.'c_civility') { $key=$langs->trans("Civility".strtoupper($obj->code)); $valuetoshow=($obj->code && $key != "Civility".strtoupper($obj->code)?$key:$obj->$fieldlist[$field]); } diff --git a/htdocs/admin/security_other.php b/htdocs/admin/security_other.php index 54bc933374c..8c65d1f3359 100644 --- a/htdocs/admin/security_other.php +++ b/htdocs/admin/security_other.php @@ -105,6 +105,13 @@ else if ($action == 'MAIN_ANTIVIRUS_PARAM') if (! dolibarr_set_const($db, "MAIN_ANTIVIRUS_PARAM", $_POST["MAIN_ANTIVIRUS_PARAM"],'chaine',0,'',$conf->entity)) dol_print_error($db); else setEventMessage($langs->trans("RecordModifiedSuccessfully")); } +else if ($action == 'MAIN_APPLICATION_TITLE') +{ + if (! dolibarr_set_const($db, "MAIN_APPLICATION_TITLE", $_POST["MAIN_SESSION_TIMEOUT"],'chaine',0,'',$conf->entity)) dol_print_error($db); + else setEventMessage($langs->trans("RecordModifiedSuccessfully")); +} + + // Delete file else if ($action == 'delete') @@ -163,8 +170,24 @@ print 'global->MAIN_APPLICATION_TITLE)) $conf->global->MAIN_APPLICATION_TITLE=""; +print '
'; +print ''; +print ''; +print ''.$langs->trans("HiddeNumVersion").''; +print $form->textwithpicto('',$langs->trans("HiddeNumVersionExample",ini_get("session.gc_probability"),ini_get("session.gc_divisor"))); +print ''; +print ''; +print ' '; +print ''; +print ''; +print ''; +print ''; +print '
'; +print ''; print '
'; @@ -333,6 +356,5 @@ $formfile->form_attach_new_file($_SERVER['PHP_SELF'], $langs->trans("FormToTestF $filearray=dol_dir_list($upload_dir, "files", 0, '', '', 'name', SORT_ASC, 1); $formfile->list_of_documents($filearray, '', 'admin_temp', ''); - llxFooter(); $db->close(); diff --git a/htdocs/comm/action/index.php b/htdocs/comm/action/index.php index 318d7efbee9..1d2325413f1 100644 --- a/htdocs/comm/action/index.php +++ b/htdocs/comm/action/index.php @@ -1192,23 +1192,20 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa $cssclass=$cssclass.' '.$cssclass.'_day_'.$ymd; // Defined style to disable drag and drop feature - if (empty($event->fulldayevent)) + if ($event->date_end_in_calendar && date('Ymd',$event->date_start_in_calendar) != date('Ymd',$event->date_end_in_calendar)) { - if ($event->date_end_in_calendar && $event->date_start_in_calendar != $event->date_end_in_calendar) - { - $tmpyearend = date('Y',$event->date_end_in_calendar); - $tmpmonthend = date('m',$event->date_end_in_calendar); - $tmpdayend = date('d',$event->date_end_in_calendar); - if ($tmpyearend != $annee || $tmpmonthend != $mois || $tmpdayend != $jour) - { - $cssclass.= " unsortable"; - } - } - if ($event->type_code =='AC_OTH_AUTO') + $tmpyearend = date('Y',$event->date_end_in_calendar); + $tmpmonthend = date('m',$event->date_end_in_calendar); + $tmpdayend = date('d',$event->date_end_in_calendar); + if ($tmpyearend == $annee && $tmpmonthend == $mois && $tmpdayend == $jour) { $cssclass.= " unsortable"; } } + if ($event->type_code =='AC_OTH_AUTO') + { + $cssclass.= " unsortable"; + } // Show rect of event print '
'; diff --git a/htdocs/comm/mailing/cibles.php b/htdocs/comm/mailing/cibles.php index df51f91e1a2..e10ea970b43 100644 --- a/htdocs/comm/mailing/cibles.php +++ b/htdocs/comm/mailing/cibles.php @@ -98,11 +98,10 @@ if ($action == 'add') $result=$obj->add_to_target($id,$filtersarray); } } - if ($result > 0) { setEventMessage($langs->trans("XTargetsAdded",$result),'mesgs'); - + header("Location: ".$_SERVER['PHP_SELF']."?id=".$id); exit; } @@ -167,7 +166,6 @@ if ($_POST["button_removefilter"]) /* * View */ - llxHeader('',$langs->trans("Mailing"),'EN:Module_EMailing|FR:Module_Mailing|ES:Módulo_Mailing'); $form = new Form($db); @@ -306,12 +304,14 @@ if ($object->fetch($id) >= 0) print img_object($langs->trans("Module").': '.get_class($obj),$obj->picto).' '.$obj->getDesc(); print ''; - /* - print ''; - print $modulename; - print ""; - */ - $nbofrecipient=$obj->getNbOfRecipients(''); + try { + $nbofrecipient=$obj->getNbOfRecipients(''); + } + catch(Exception $e) + { + dol_syslog($e->getMessage(), LOG_ERR); + } + print ''; if ($nbofrecipient >= 0) { @@ -324,7 +324,13 @@ if ($object->fetch($id) >= 0) print ''; print ''; - $filter=$obj->formFilter(); + try { + $filter=$obj->formFilter(); + } + catch(Exception $e) + { + dol_syslog($e->getMessage(), LOG_ERR); + } if ($filter) print $filter; else print $langs->trans("None"); print ''; @@ -421,7 +427,7 @@ if ($object->fetch($id) >= 0) print ''; print ' '; print ''; - + print ''; // Ligne des champs de filtres @@ -446,7 +452,7 @@ if ($object->fetch($id) >= 0) print ''; print ' '; print ''; - + // Date sending print ''; print ' '; @@ -530,7 +536,7 @@ if ($object->fetch($id) >= 0) print $object::libStatutDest($obj->statut,2); print ''; } - + //Sreach Icon print ''; print ''; diff --git a/htdocs/commande/class/commande.class.php b/htdocs/commande/class/commande.class.php index aefdb620551..ac66f7fb048 100644 --- a/htdocs/commande/class/commande.class.php +++ b/htdocs/commande/class/commande.class.php @@ -1,7 +1,7 @@ * Copyright (C) 2004-2012 Laurent Destailleur - * Copyright (C) 2005-2014 Regis Houssin + * Copyright (C) 2005-2013 Regis Houssin * Copyright (C) 2006 Andre Cianfarani * Copyright (C) 2010-2014 Juanjo Menent * Copyright (C) 2011 Jean Heimburger @@ -9,7 +9,7 @@ * Copyright (C) 2013 Florian Henry * * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the GNU *General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * @@ -301,13 +301,6 @@ class Commande extends CommonOrder } } - // Set new ref and current status - if (! $error) - { - $this->ref = $num; - $this->statut = 1; - } - if (! $error) { // Call trigger @@ -316,6 +309,13 @@ class Commande extends CommonOrder // End call triggers } + // Set new ref and current status + if (! $error) + { + $this->ref = $num; + $this->statut = 1; + } + if (! $error) { $this->db->commit(); diff --git a/htdocs/compta/facture/class/facture.class.php b/htdocs/compta/facture/class/facture.class.php index 9b0e236af35..c46f48ed1c6 100644 --- a/htdocs/compta/facture/class/facture.class.php +++ b/htdocs/compta/facture/class/facture.class.php @@ -1763,16 +1763,6 @@ class Facture extends CommonInvoice } } - // Set new ref and define current statut - if (! $error) - { - $this->ref = $num; - $this->facnumber=$num; - $this->statut=1; - $this->brouillon=0; - $this->date_validation=$now; - } - // Trigger calls if (! $error) { @@ -1782,6 +1772,16 @@ class Facture extends CommonInvoice //TODO: Restoring ref, facnumber, statut, brouillon to previous value if trigger fail // End call triggers } + + // Set new ref and define current statut + if (! $error) + { + $this->ref = $num; + $this->facnumber=$num; + $this->statut=1; + $this->brouillon=0; + $this->date_validation=$now; + } } else { diff --git a/htdocs/contact/class/contact.class.php b/htdocs/contact/class/contact.class.php index 47f219feb4d..878ee1fa956 100644 --- a/htdocs/contact/class/contact.class.php +++ b/htdocs/contact/class/contact.class.php @@ -249,7 +249,7 @@ class Contact extends CommonObject $sql = "UPDATE ".MAIN_DB_PREFIX."socpeople SET "; if ($this->socid > 0) $sql .= " fk_soc='".$this->db->escape($this->socid)."',"; else if ($this->socid == -1) $sql .= " fk_soc=null,"; - $sql .= " civilite='".$this->db->escape($this->civility_id)."'"; + $sql .= " civility='".$this->db->escape($this->civility_id)."'"; $sql .= ", lastname='".$this->db->escape($this->lastname)."'"; $sql .= ", firstname='".$this->db->escape($this->firstname)."'"; $sql .= ", address='".$this->db->escape($this->address)."'"; @@ -498,7 +498,7 @@ class Contact extends CommonObject $langs->load("companies"); - $sql = "SELECT c.rowid, c.fk_soc, c.ref_ext, c.civilite as civility_id, c.lastname, c.firstname,"; + $sql = "SELECT c.rowid, c.fk_soc, c.ref_ext, c.civility as civility_id, c.lastname, c.firstname,"; $sql.= " c.address, c.statut, c.zip, c.town,"; $sql.= " c.fk_pays as country_id,"; $sql.= " c.fk_departement,"; @@ -911,7 +911,7 @@ class Contact extends CommonObject $code=(! empty($this->civility_id)?$this->civility_id:(! empty($this->civility_id)?$this->civility_id:'')); if (empty($code)) return ''; - return $langs->getLabelFromKey($this->db, "Civility".$code, "c_civilite", "code", "civilite", $code); + return $langs->getLabelFromKey($this->db, "Civility".$code, "c_civility", "code", "label", $code); } /** diff --git a/htdocs/core/boxes/box_contacts.php b/htdocs/core/boxes/box_contacts.php index 1afc0d09e41..a6fe663087e 100644 --- a/htdocs/core/boxes/box_contacts.php +++ b/htdocs/core/boxes/box_contacts.php @@ -61,7 +61,7 @@ class box_contacts extends ModeleBoxes if ($user->rights->societe->lire) { - $sql = "SELECT sp.rowid, sp.lastname, sp.firstname, sp.civilite as civility_id, sp.datec, sp.tms, sp.fk_soc,"; + $sql = "SELECT sp.rowid, sp.lastname, sp.firstname, sp.civility as civility_id, sp.datec, sp.tms, sp.fk_soc,"; $sql.= " s.nom as socname"; $sql.= " FROM ".MAIN_DB_PREFIX."socpeople as sp"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON sp.fk_soc = s.rowid"; diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index 3306d38f214..af71662b3a5 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -383,7 +383,7 @@ abstract class CommonObject $sql = "SELECT ec.rowid, ec.statut, ec.fk_socpeople as id, ec.fk_c_type_contact"; // This field contains id of llx_socpeople or id of llx_user if ($source == 'internal') $sql.=", '-1' as socid"; if ($source == 'external' || $source == 'thirdparty') $sql.=", t.fk_soc as socid"; - $sql.= ", t.civilite as civility, t.lastname as lastname, t.firstname, t.email"; + $sql.= ", t.civility as civility, t.lastname as lastname, t.firstname, t.email"; $sql.= ", tc.source, tc.element, tc.code, tc.libelle"; $sql.= " FROM ".MAIN_DB_PREFIX."c_type_contact tc"; $sql.= ", ".MAIN_DB_PREFIX."element_contact ec"; diff --git a/htdocs/core/class/html.formcompany.class.php b/htdocs/core/class/html.formcompany.class.php index 9283ed13694..27be0636fdf 100644 --- a/htdocs/core/class/html.formcompany.class.php +++ b/htdocs/core/class/html.formcompany.class.php @@ -368,7 +368,7 @@ class FormCompany $out=''; - $sql = "SELECT rowid, code, civilite as civility_label, active FROM ".MAIN_DB_PREFIX."c_civilite"; + $sql = "SELECT rowid, code, label, active FROM ".MAIN_DB_PREFIX."c_civility"; $sql.= " WHERE active = 1"; dol_syslog("Form::select_civility", LOG_DEBUG); @@ -393,7 +393,7 @@ class FormCompany $out.= ''; $i++; } diff --git a/htdocs/core/class/translate.class.php b/htdocs/core/class/translate.class.php index 383ac4a035d..7462a40e897 100644 --- a/htdocs/core/class/translate.class.php +++ b/htdocs/core/class/translate.class.php @@ -363,7 +363,7 @@ class Translate } else if (preg_match('/^Civility([0-9A-Z]+)$/i',$key,$reg)) { - $newstr=$this->getLabelFromKey($db,$reg[1],'c_civilite','code','civilite'); + $newstr=$this->getLabelFromKey($db,$reg[1],'c_civility','code','label'); } else if (preg_match('/^OrderSource([0-9A-Z]+)$/i',$key,$reg)) { diff --git a/htdocs/core/lib/company.lib.php b/htdocs/core/lib/company.lib.php index 9b0661e063a..acd39a38901 100644 --- a/htdocs/core/lib/company.lib.php +++ b/htdocs/core/lib/company.lib.php @@ -634,7 +634,7 @@ function show_contacts($conf,$langs,$db,$object,$backtopage='') // Status print ''; - print $form->selectarray('search_status', array('0'=>$langs->trans('ActivityCeased'),'1'=>$langs->trans('InActivity')),$search_status); + print $form->selectarray('search_status', array('-1'=>'','0'=>$langs->trans('ActivityCeased'),'1'=>$langs->trans('InActivity')),$search_status); print ''; // Copy to clipboard @@ -656,10 +656,10 @@ function show_contacts($conf,$langs,$db,$object,$backtopage='') $sql = "SELECT p.rowid, p.lastname, p.firstname, p.fk_pays as country_id, p.poste, p.phone, p.phone_mobile, p.fax, p.email, p.skype, p.statut "; - $sql .= ", p.civilite as civility_id, p.address, p.zip, p.town"; + $sql .= ", p.civility as civility_id, p.address, p.zip, p.town"; $sql .= " FROM ".MAIN_DB_PREFIX."socpeople as p"; $sql .= " WHERE p.fk_soc = ".$object->id; - if ($search_status!='') $sql .= " AND p.statut = ".$db->escape($search_status); + if ($search_status!='' && $search_status != '-1') $sql .= " AND p.statut = ".$db->escape($search_status); if ($search_name) $sql .= " AND (p.lastname LIKE '%".$db->escape($search_name)."%' OR p.firstname LIKE '%".$db->escape($search_name)."%')"; $sql.= " ORDER BY $sortfield $sortorder"; diff --git a/htdocs/core/lib/pdf.lib.php b/htdocs/core/lib/pdf.lib.php index ade08400762..e0c6c9ee0e0 100644 --- a/htdocs/core/lib/pdf.lib.php +++ b/htdocs/core/lib/pdf.lib.php @@ -651,7 +651,7 @@ function pdf_bank(&$pdf,$outputlangs,$curx,$cury,$account,$onlynumber=0,$default * @param int $marge_gauche Margin left (no more used) * @param int $page_hauteur Page height (no more used) * @param Object $object Object shown in PDF - * @param int $showdetails Show company details into footer. This param seems to not be used by standard version. + * @param int $showdetails Show company details into footer. This param seems to not be used by standard version. (1=Show address, 2=Show managers, 3=Both) * @param int $hidefreetext 1=Hide free text, 0=Show free text * @return int Return height of bottom margin including footer text */ @@ -681,10 +681,10 @@ function pdf_pagefoot(&$pdf,$outputlangs,$paramfreetext,$fromcompany,$marge_bass } // First line of company infos + $line1=""; $line2=""; $line3=""; $line4=""; - if ($showdetails) + if ($showdetails && 1) { - $line1=""; // Company name if ($fromcompany->name) { @@ -716,7 +716,6 @@ function pdf_pagefoot(&$pdf,$outputlangs,$paramfreetext,$fromcompany,$marge_bass $line1.=($line1?" - ":"").$outputlangs->transnoentities("Fax").": ".$fromcompany->fax; } - $line2=""; // URL if ($fromcompany->url) { @@ -728,9 +727,16 @@ function pdf_pagefoot(&$pdf,$outputlangs,$paramfreetext,$fromcompany,$marge_bass $line2.=($line2?" - ":"").$fromcompany->email; } } + if (($showdetails && 2) || ($fromcompany->country_code == 'DE')) + { + // Managers + if ($fromcompany->managers) + { + $line2.=($line2?" - ":"").$fromcompany->managers; + } + } // Line 3 of company infos - $line3=""; // Juridical status if ($fromcompany->forme_juridique_code) { @@ -757,7 +763,6 @@ function pdf_pagefoot(&$pdf,$outputlangs,$paramfreetext,$fromcompany,$marge_bass } // Line 4 of company infos - $line4=""; // Prof Id 3 if ($fromcompany->idprof3) { diff --git a/htdocs/core/menus/init_menu_auguria.sql b/htdocs/core/menus/init_menu_auguria.sql index 67d303b0b19..af5473ef3e2 100644 --- a/htdocs/core/menus/init_menu_auguria.sql +++ b/htdocs/core/menus/init_menu_auguria.sql @@ -11,8 +11,8 @@ delete from llx_menu where menu_handler=__HANDLER__ and entity=__ENTITY__; insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('', '1', 1__+MAX_llx_menu__, __HANDLER__, 'top', 'home', '', 0, '/index.php?mainmenu=home&leftmenu=', 'Home', -1, '', '', '', 2, 10, __ENTITY__); insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('societe|fournisseur', '( ! empty($conf->societe->enabled) && (empty($conf->global->SOCIETE_DISABLE_PROSPECTS) || empty($conf->global->SOCIETE_DISABLE_CUSTOMERS))) || ! empty($conf->fournisseur->enabled)', 2__+MAX_llx_menu__, __HANDLER__, 'top', 'companies', '', 0, '/societe/index.php?mainmenu=companies&leftmenu=', 'ThirdParties', -1, 'companies', '$user->rights->societe->lire || $user->rights->societe->contact->lire', '', 2, 20, __ENTITY__); insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('product|service', '$conf->product->enabled || $conf->service->enabled', 3__+MAX_llx_menu__, __HANDLER__, 'top', 'products', '', 0, '/product/index.php?mainmenu=products&leftmenu=', 'Products/Services', -1, 'products', '$user->rights->produit->lire||$user->rights->service->lire', '', 0, 30, __ENTITY__); -insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('propal|commande|fournisseur|contrat|ficheinter', '$conf->comptabilite->enabled || $conf->accounting->enabled || $conf->facture->enabled || $conf->deplacement->enabled || $conf->don->enabled || $conf->tax->enabled', 5__+MAX_llx_menu__, __HANDLER__, 'top', 'commercial', '', 0, '/comm/index.php?mainmenu=commercial&leftmenu=', 'Commercial', -1, 'commercial', '$user->rights->societe->lire || $user->rights->societe->contact->lire', '', 2, 40, __ENTITY__); -insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('comptabilite|accounting|facture|deplacement|don|tax', '$conf->comptabilite->enabled || $conf->accounting->enabled || $conf->facture->enabled || $conf->deplacement->enabled || $conf->don->enabled || $conf->tax->enabled', 6__+MAX_llx_menu__, __HANDLER__, 'top', 'accountancy', '', 0, '/compta/index.php?mainmenu=accountancy&leftmenu=', 'MenuFinancial', -1, 'compta', '$user->rights->compta->resultat->lire || $user->rights->accounting->plancompte->lire || $user->rights->facture->lire|| $user->rights->deplacement->lire || $user->rights->don->lire || $user->rights->tax->charges->lire', '', 2, 50, __ENTITY__); +insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('propal|commande|fournisseur|contrat|ficheinter', '$conf->comptabilite->enabled || $conf->accounting->enabled || $conf->facture->enabled || $conf->deplacement->enabled || $conf->don->enabled || $conf->tax->enabled', 5__+MAX_llx_menu__, __HANDLER__, 'top', 'commercial', '', 0, '/comm/index.php?mainmenu=commercial&leftmenu=', 'Commercial', -1, 'commercial', '$user->rights->societe->lire || $user->rights->societe->contact->lire', '', 2, 40, __ENTITY__); +insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('comptabilite|accounting|facture|deplacement|don|tax|salaries', '$conf->comptabilite->enabled || $conf->accounting->enabled || $conf->facture->enabled || $conf->deplacement->enabled || $conf->don->enabled || $conf->tax->enabled || $conf->salaries->enabled', 6__+MAX_llx_menu__, __HANDLER__, 'top', 'accountancy', '', 0, '/compta/index.php?mainmenu=accountancy&leftmenu=', 'MenuFinancial', -1, 'compta', '$user->rights->compta->resultat->lire || $user->rights->accounting->plancompte->lire || $user->rights->facture->lire|| $user->rights->deplacement->lire || $user->rights->don->lire || $user->rights->tax->charges->lire || $user->rights->salaries->read', '', 2, 50, __ENTITY__); insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('banque|prelevement', '$conf->banque->enabled || $conf->prelevement->enabled', 14__+MAX_llx_menu__, __HANDLER__, 'top', 'bank', '', 0, '/compta/bank/index.php?mainmenu=bank&leftmenu=bank', 'MenuBankCash', -1, 'banks', '$user->rights->banque->lire || $user->rights->prelevement->bons->lire', '', 0, 60, __ENTITY__); insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('projet', '$conf->projet->enabled', 7__+MAX_llx_menu__, __HANDLER__, 'top', 'project', '', 0, '/projet/index.php?mainmenu=project&leftmenu=', 'Projects', -1, 'projects', '$user->rights->projet->lire', '', 2, 70, __ENTITY__); insert into llx_menu (module, enabled, rowid, menu_handler, type, mainmenu, leftmenu, fk_menu, url, titre, level, langs, perms, target, usertype, position, entity) values ('mailing|export|import|opensurvey', '$conf->mailing->enabled || $conf->export->enabled || $conf->import->enabled || $conf->opensurvey->enabled', 8__+MAX_llx_menu__, __HANDLER__, 'top', 'tools', '', 0, '/core/tools.php?mainmenu=tools&leftmenu=', 'Tools', -1, 'other', '$user->rights->mailing->lire || $user->rights->export->lire || $user->rights->import->run || $user->rights->opensurvey->read', '', 2, 90, __ENTITY__); diff --git a/htdocs/core/menus/standard/eldy.lib.php b/htdocs/core/menus/standard/eldy.lib.php index e331e604233..b1e9ccffd52 100644 --- a/htdocs/core/menus/standard/eldy.lib.php +++ b/htdocs/core/menus/standard/eldy.lib.php @@ -134,9 +134,9 @@ function print_eldy_menu($db,$atarget,$type_user,&$tabMenu,&$menu,$noout=0) } // Financial - $tmpentry=array('enabled'=>(! empty($conf->comptabilite->enabled) || ! empty($conf->accounting->enabled) || ! empty($conf->facture->enabled) || ! empty($conf->don->enabled) || ! empty($conf->tax->enabled)), - 'perms'=>(! empty($user->rights->compta->resultat->lire) || ! empty($user->rights->accounting->plancompte->lire) || ! empty($user->rights->facture->lire) || ! empty($user->rights->don->lire) || ! empty($user->rights->tax->charges->lire)), - 'module'=>'comptabilite|accounting|facture|don|tax'); + $tmpentry=array('enabled'=>(! empty($conf->comptabilite->enabled) || ! empty($conf->accounting->enabled) || ! empty($conf->facture->enabled) || ! empty($conf->don->enabled) || ! empty($conf->tax->enabled) || ! empty($conf->salaries->enabled)), + 'perms'=>(! empty($user->rights->compta->resultat->lire) || ! empty($user->rights->accounting->plancompte->lire) || ! empty($user->rights->facture->lire) || ! empty($user->rights->don->lire) || ! empty($user->rights->tax->charges->lire) || ! empty($user->rights->salaries->read)), + 'module'=>'comptabilite|accounting|facture|don|tax|salaries'); $showmode=dol_eldy_showmenu($type_user, $tmpentry, $listofmodulesforexternal); if ($showmode) { @@ -1247,7 +1247,7 @@ function print_left_eldy_menu($db,$menu_array_before,$menu_array_after,&$tabMenu else dol_print_error($db); $db->free($resql); } - if ($conf->ftp->enabled && $mainmenu == 'ftp') // Entry for FTP + if (!empty($conf->ftp->enabled) && $mainmenu == 'ftp') // Entry for FTP { $MAXFTP=20; $i=1; diff --git a/htdocs/core/modules/cheque/pdf/pdf_blochet.class.php b/htdocs/core/modules/cheque/pdf/pdf_blochet.class.php index 96214f08d66..ecb4abd561c 100644 --- a/htdocs/core/modules/cheque/pdf/pdf_blochet.class.php +++ b/htdocs/core/modules/cheque/pdf/pdf_blochet.class.php @@ -352,7 +352,8 @@ class BordereauChequeBlochet extends ModeleChequeReceipts global $conf; $default_font_size = pdf_getPDFFontSize($outputlangs); - //return pdf_pagefoot($pdf,$outputlangs,'BANK_CHEQUERECEIPT_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object); + //$showdetails=0; + //return pdf_pagefoot($pdf,$outputlangs,'BANK_CHEQUERECEIPT_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); $paramfreetext='BANK_CHEQUERECEIPT_FREE_TEXT'; $marge_basse=$this->marge_basse; $marge_gauche=$this->marge_gauche; diff --git a/htdocs/core/modules/commande/doc/doc_generic_order_odt.modules.php b/htdocs/core/modules/commande/doc/doc_generic_order_odt.modules.php index 67d45c39bb3..895ad153fc8 100644 --- a/htdocs/core/modules/commande/doc/doc_generic_order_odt.modules.php +++ b/htdocs/core/modules/commande/doc/doc_generic_order_odt.modules.php @@ -482,6 +482,8 @@ class doc_generic_order_odt extends ModelePDFCommandes } } + $reshook=$hookmanager->executeHooks('afterODTCreation',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + if (! empty($conf->global->MAIN_UMASK)) @chmod($file, octdec($conf->global->MAIN_UMASK)); diff --git a/htdocs/core/modules/commande/doc/pdf_einstein.modules.php b/htdocs/core/modules/commande/doc/pdf_einstein.modules.php index 712dd0b765c..236a4d52454 100644 --- a/htdocs/core/modules/commande/doc/pdf_einstein.modules.php +++ b/htdocs/core/modules/commande/doc/pdf_einstein.modules.php @@ -1271,7 +1271,8 @@ class pdf_einstein extends ModelePDFCommandes */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'COMMANDE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'COMMANDE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/commande/doc/pdf_proforma.modules.php b/htdocs/core/modules/commande/doc/pdf_proforma.modules.php index 408fd543c93..38ca0a8748e 100644 --- a/htdocs/core/modules/commande/doc/pdf_proforma.modules.php +++ b/htdocs/core/modules/commande/doc/pdf_proforma.modules.php @@ -1228,7 +1228,8 @@ class pdf_proforma extends ModelePDFCommandes */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'COMMANDE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'COMMANDE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/commande/modules_commande.php b/htdocs/core/modules/commande/modules_commande.php index 9116205d287..63806e4cb46 100644 --- a/htdocs/core/modules/commande/modules_commande.php +++ b/htdocs/core/modules/commande/modules_commande.php @@ -234,13 +234,6 @@ function commande_pdf_create($db, $object, $modele, $outputlangs, $hidedetails=0 // Success in building document. We build meta file. dol_meta_create($object); - // Appel des triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('ORDER_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { $error++; $obj->errors=$interface->errors; } - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/contract/doc/pdf_strato.modules.php b/htdocs/core/modules/contract/doc/pdf_strato.modules.php index 5fc0eb6dd2a..cee022805af 100644 --- a/htdocs/core/modules/contract/doc/pdf_strato.modules.php +++ b/htdocs/core/modules/contract/doc/pdf_strato.modules.php @@ -610,7 +610,8 @@ class pdf_strato extends ModelePDFContract */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'CONTRACT_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'CONTRACT_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/contract/modules_contract.php b/htdocs/core/modules/contract/modules_contract.php index 27a77733553..689509f2a59 100644 --- a/htdocs/core/modules/contract/modules_contract.php +++ b/htdocs/core/modules/contract/modules_contract.php @@ -224,17 +224,10 @@ function contract_pdf_create($db, $object, $modele, $outputlangs, $hidedetails=0 // We delete old preview require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; dol_delete_preview($object); - + // Success in building document. We build meta file. dol_meta_create($object); - // Appel des triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('CONTRACT_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { $error++; $obj->errors=$interface->errors; } - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php b/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php index beed6fb5cdb..b4325139878 100644 --- a/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php +++ b/htdocs/core/modules/expedition/doc/doc_generic_shipment_odt.modules.php @@ -482,6 +482,8 @@ class doc_generic_shipment_odt extends ModelePdfExpedition } } + $reshook=$hookmanager->executeHooks('afterODTCreation',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + if (! empty($conf->global->MAIN_UMASK)) @chmod($file, octdec($conf->global->MAIN_UMASK)); diff --git a/htdocs/core/modules/expedition/doc/pdf_rouget.modules.php b/htdocs/core/modules/expedition/doc/pdf_rouget.modules.php index 6d0e44817a7..177a2bb4fa7 100644 --- a/htdocs/core/modules/expedition/doc/pdf_rouget.modules.php +++ b/htdocs/core/modules/expedition/doc/pdf_rouget.modules.php @@ -657,7 +657,8 @@ class pdf_rouget extends ModelePdfExpedition */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'SHIPPING_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'SHIPPING_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/expedition/modules_expedition.php b/htdocs/core/modules/expedition/modules_expedition.php index a88ac3ff023..3f2938ef25f 100644 --- a/htdocs/core/modules/expedition/modules_expedition.php +++ b/htdocs/core/modules/expedition/modules_expedition.php @@ -191,7 +191,7 @@ function expedition_pdf_create($db, $object, $modele, $outputlangs) { $file = $prefix."_".$modele.".modules.php"; - // We check the model location + // We check the model location $file=dol_buildpath($reldir."core/modules/expedition/doc/".$file,0); if (file_exists($file)) { @@ -223,15 +223,6 @@ function expedition_pdf_create($db, $object, $modele, $outputlangs) //require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; //dol_delete_preview($object); - // Calls triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('SHIPPING_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { - $error++; $obj->errors=$interface->errors; - } - // End calls triggers - return 1; } else diff --git a/htdocs/core/modules/facture/doc/doc_generic_invoice_odt.modules.php b/htdocs/core/modules/facture/doc/doc_generic_invoice_odt.modules.php index 9b89555a9ff..0084df11e72 100644 --- a/htdocs/core/modules/facture/doc/doc_generic_invoice_odt.modules.php +++ b/htdocs/core/modules/facture/doc/doc_generic_invoice_odt.modules.php @@ -439,6 +439,8 @@ class doc_generic_invoice_odt extends ModelePDFFactures } } + $reshook=$hookmanager->executeHooks('afterODTCreation',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + if (! empty($conf->global->MAIN_UMASK)) @chmod($file, octdec($conf->global->MAIN_UMASK)); diff --git a/htdocs/core/modules/facture/doc/pdf_crabe.modules.php b/htdocs/core/modules/facture/doc/pdf_crabe.modules.php index d07bd93825c..3c3cca12440 100644 --- a/htdocs/core/modules/facture/doc/pdf_crabe.modules.php +++ b/htdocs/core/modules/facture/doc/pdf_crabe.modules.php @@ -1455,7 +1455,8 @@ class pdf_crabe extends ModelePDFFactures */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'FACTURE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'FACTURE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/facture/modules_facture.php b/htdocs/core/modules/facture/modules_facture.php index 2077e7255dd..ae0d9f98cda 100644 --- a/htdocs/core/modules/facture/modules_facture.php +++ b/htdocs/core/modules/facture/modules_facture.php @@ -235,13 +235,6 @@ function facture_pdf_create($db, $object, $modele, $outputlangs, $hidedetails=0, // Success in building document. We build meta file. dol_meta_create($object); - // Appel des triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('BILL_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { $error++; $errors=$interface->errors; } - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php b/htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php index f2055e8d643..284dc62a0b7 100644 --- a/htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php +++ b/htdocs/core/modules/fichinter/doc/pdf_soleil.modules.php @@ -595,7 +595,8 @@ class pdf_soleil extends ModelePDFFicheinter */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'FICHINTER_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'FICHINTER_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/fichinter/modules_fichinter.php b/htdocs/core/modules/fichinter/modules_fichinter.php index 61f73eff366..dbcdab37530 100644 --- a/htdocs/core/modules/fichinter/modules_fichinter.php +++ b/htdocs/core/modules/fichinter/modules_fichinter.php @@ -224,13 +224,6 @@ function fichinter_create($db, $object, $modele, $outputlangs, $hidedetails=0, $ require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; dol_delete_preview($object); - // Appel des triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('FICHINTER_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { $error++; $obj->errors=$interface->errors; } - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/livraison/modules_livraison.php b/htdocs/core/modules/livraison/modules_livraison.php index 4d6f888e9a5..fe8e4220281 100644 --- a/htdocs/core/modules/livraison/modules_livraison.php +++ b/htdocs/core/modules/livraison/modules_livraison.php @@ -226,15 +226,6 @@ function delivery_order_pdf_create($db, $object, $modele, $outputlangs='') require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; dol_delete_preview($object); - // Appel des triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('DELIVERY_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { - $error++; $obj->errors=$interface->errors; - } - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/livraison/pdf/pdf_typhon.modules.php b/htdocs/core/modules/livraison/pdf/pdf_typhon.modules.php index 095e325cb81..75bdc06aaed 100644 --- a/htdocs/core/modules/livraison/pdf/pdf_typhon.modules.php +++ b/htdocs/core/modules/livraison/pdf/pdf_typhon.modules.php @@ -358,7 +358,7 @@ class pdf_typhon extends ModelePDFDeliveryOrder //$qty = pdf_getlineqty($object, $i, $outputlangs, $hidedetails); $pdf->SetXY($this->posxqty, $curY); $pdf->MultiCell($this->posxremainingqty - $this->posxqty, 3, $object->lines[$i]->qty_shipped, 0, 'R'); - + // Remaining to ship $pdf->SetXY($this->posxremainingqty, $curY); $qtyRemaining = $object->lines[$i]->qty_asked - $object->commande->expeditions[$object->lines[$i]->fk_origin_line]; @@ -613,7 +613,7 @@ class pdf_typhon extends ModelePDFDeliveryOrder $pdf->SetXY($this->posxdesc-1, $tab_top+1); $pdf->MultiCell($this->posxcomm - $this->posxdesc,2, $outputlangs->transnoentities("Designation"),'','L'); } - + // Modif SEB pour avoir une col en plus pour les commentaires clients $pdf->line($this->posxcomm, $tab_top, $this->posxcomm, $tab_top + $tab_height); if (empty($hidetop)) { @@ -863,7 +863,8 @@ class pdf_typhon extends ModelePDFDeliveryOrder */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'DELIVERY_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'DELIVERY_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/mailings/contacts1.modules.php b/htdocs/core/modules/mailings/contacts1.modules.php index 3d0b0946b8f..2729234483f 100644 --- a/htdocs/core/modules/mailings/contacts1.modules.php +++ b/htdocs/core/modules/mailings/contacts1.modules.php @@ -197,7 +197,7 @@ class mailing_contacts1 extends MailingTargets // La requete doit retourner: id, email, fk_contact, name, firstname, other $sql = "SELECT c.rowid as id, c.email as email, c.rowid as fk_contact,"; - $sql.= " c.lastname, c.firstname, c.civilite as civility_id,"; + $sql.= " c.lastname, c.firstname, c.civility as civility_id,"; $sql.= " s.nom as companyname"; $sql.= " FROM ".MAIN_DB_PREFIX."socpeople as c"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = c.fk_soc"; @@ -239,7 +239,7 @@ class mailing_contacts1 extends MailingTargets 'firstname' => $obj->firstname, 'other' => ($langs->transnoentities("ThirdParty").'='.$obj->companyname).';'. - ($langs->transnoentities("UserTitle").'='.($obj->civilite_id?$langs->transnoentities("Civility".$obj->civilite_id):'')), + ($langs->transnoentities("UserTitle").'='.($obj->civility_id?$langs->transnoentities("Civility".$obj->civility_id):'')), 'source_url' => $this->url($obj->id), 'source_id' => $obj->id, 'source_type' => 'contact' diff --git a/htdocs/core/modules/mailings/contacts2.modules.php b/htdocs/core/modules/mailings/contacts2.modules.php index 7f07cc7fa0a..35d840125a7 100644 --- a/htdocs/core/modules/mailings/contacts2.modules.php +++ b/htdocs/core/modules/mailings/contacts2.modules.php @@ -79,7 +79,7 @@ class mailing_contacts2 extends MailingTargets // La requete doit retourner: id, email, fk_contact, name, firstname, other $sql = "SELECT sp.rowid as id, sp.email as email, sp.rowid as fk_contact,"; - $sql.= " sp.lastname, sp.firstname as firstname, sp.civilite as civility_id,"; + $sql.= " sp.lastname, sp.firstname as firstname, sp.civility as civility_id,"; $sql.= " s.nom as companyname"; $sql.= " FROM ".MAIN_DB_PREFIX."socpeople as sp"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = sp.fk_soc"; diff --git a/htdocs/core/modules/mailings/contacts3.modules.php b/htdocs/core/modules/mailings/contacts3.modules.php index 2cf5a708056..327e36cf826 100644 --- a/htdocs/core/modules/mailings/contacts3.modules.php +++ b/htdocs/core/modules/mailings/contacts3.modules.php @@ -77,7 +77,7 @@ class mailing_contacts3 extends MailingTargets // La requete doit retourner: id, email, fk_contact, name, firstname, other $sql = "SELECT sp.rowid as id, sp.email as email, sp.rowid as fk_contact,"; - $sql.= " sp.lastname, sp.firstname, sp.civilite as civility_id,"; + $sql.= " sp.lastname, sp.firstname, sp.civility as civility_id,"; $sql.= " s.nom as companyname"; $sql.= " FROM ".MAIN_DB_PREFIX."socpeople as sp"; $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON s.rowid = sp.fk_soc"; diff --git a/htdocs/core/modules/mailings/contacts4.modules.php b/htdocs/core/modules/mailings/contacts4.modules.php index eb14b3995f4..c86ca871c17 100644 --- a/htdocs/core/modules/mailings/contacts4.modules.php +++ b/htdocs/core/modules/mailings/contacts4.modules.php @@ -77,7 +77,7 @@ class mailing_contacts4 extends MailingTargets // La requete doit retourner: id, email, fk_contact, name, firstname, other $sql = "SELECT sp.rowid as id, sp.email as email, sp.rowid as fk_contact,"; - $sql.= " sp.lastname, sp.firstname, sp.civilite as civility_id,"; + $sql.= " sp.lastname, sp.firstname, sp.civility as civility_id,"; $sql.= " s.nom as companyname"; $sql.= " FROM ".MAIN_DB_PREFIX."socpeople as sp"; if ($filtersarray[0] <> 'all')$sql.= " INNER JOIN ".MAIN_DB_PREFIX."categorie_contact as cs ON cs.fk_socpeople=sp.rowid"; diff --git a/htdocs/core/modules/mailings/fraise.modules.php b/htdocs/core/modules/mailings/fraise.modules.php index a9df6300f80..aa76e6b9efc 100644 --- a/htdocs/core/modules/mailings/fraise.modules.php +++ b/htdocs/core/modules/mailings/fraise.modules.php @@ -166,7 +166,7 @@ class mailing_fraise extends MailingTargets // La requete doit retourner: id, email, fk_contact, name, firstname $sql = "SELECT a.rowid as id, a.email as email, null as fk_contact, "; $sql.= " a.lastname, a.firstname,"; - $sql.= " a.datefin, a.civilite as civility_id, a.login, a.societe"; // Other fields + $sql.= " a.datefin, a.civility as civility_id, a.login, a.societe"; // Other fields $sql.= " FROM ".MAIN_DB_PREFIX."adherent as a"; $sql.= " WHERE a.email <> ''"; // Note that null != '' is false $sql.= " AND a.email NOT IN (SELECT email FROM ".MAIN_DB_PREFIX."mailing_cibles WHERE fk_mailing=".$mailing_id.")"; diff --git a/htdocs/core/modules/mailings/framboise.modules.php b/htdocs/core/modules/mailings/framboise.modules.php index 27ea5592b21..4572d894bac 100644 --- a/htdocs/core/modules/mailings/framboise.modules.php +++ b/htdocs/core/modules/mailings/framboise.modules.php @@ -64,7 +64,7 @@ class mailing_framboise extends MailingTargets // Select the members from category $sql = "SELECT a.rowid as id, a.email as email, a.lastname, null as fk_contact, a.firstname,"; - $sql.= " a.datefin, a.civilite as civility_id, a.login, a.societe,"; // Other fields + $sql.= " a.datefin, a.civility as civility_id, a.login, a.societe,"; // Other fields if ($_POST['filter']) $sql.= " c.label"; else $sql.=" null as label"; $sql.= " FROM ".MAIN_DB_PREFIX."adherent as a"; diff --git a/htdocs/core/modules/mailings/pomme.modules.php b/htdocs/core/modules/mailings/pomme.modules.php index f215b2d7110..61c3e2fb464 100644 --- a/htdocs/core/modules/mailings/pomme.modules.php +++ b/htdocs/core/modules/mailings/pomme.modules.php @@ -149,7 +149,7 @@ class mailing_pomme extends MailingTargets // La requete doit retourner: id, email, fk_contact, lastname, firstname $sql = "SELECT u.rowid as id, u.email as email, null as fk_contact,"; - $sql.= " u.lastname, u.firstname as firstname, u.civilite as civility_id, u.login, u.office_phone"; + $sql.= " u.lastname, u.firstname as firstname, u.civility as civility_id, u.login, u.office_phone"; $sql.= " FROM ".MAIN_DB_PREFIX."user as u"; $sql.= " WHERE u.email <> ''"; // u.email IS NOT NULL est implicite dans ce test $sql.= " AND u.entity IN (0,".$conf->entity.")"; diff --git a/htdocs/core/modules/modAdherent.class.php b/htdocs/core/modules/modAdherent.class.php index 4e8f1ba57bb..8cec64f2d20 100644 --- a/htdocs/core/modules/modAdherent.class.php +++ b/htdocs/core/modules/modAdherent.class.php @@ -173,9 +173,10 @@ class modAdherent extends DolibarrModules $this->export_code[$r]=$this->rights_class.'_'.$r; $this->export_label[$r]='MembersAndSubscriptions'; $this->export_permission[$r]=array(array("adherent","export")); - $this->export_fields_array[$r]=array('a.rowid'=>'Id','a.civilite'=>"UserTitle",'a.lastname'=>"Lastname",'a.firstname'=>"Firstname",'a.login'=>"Login",'a.morphy'=>'Nature','a.societe'=>'Company','a.address'=>"Address",'a.zip'=>"Zip",'a.town'=>"Town",'d.nom'=>"State",'co.code'=>"CountryCode",'co.label'=>"Country",'a.phone'=>"PhonePro",'a.phone_perso'=>"PhonePerso",'a.phone_mobile'=>"PhoneMobile",'a.email'=>"Email",'a.birth'=>"Birthday",'a.statut'=>"Status",'a.photo'=>"Photo",'a.note'=>"Note",'a.datec'=>'DateCreation','a.datevalid'=>'DateValidation','a.tms'=>'DateLastModification','a.datefin'=>'DateEndSubscription','ta.rowid'=>'MemberTypeId','ta.libelle'=>'MemberTypeLabel','c.rowid'=>'SubscriptionId','c.dateadh'=>'DateSubscription','c.cotisation'=>'Amount'); - $this->export_TypeFields_array[$r]=array('a.civilite'=>"Text",'a.lastname'=>"Text",'a.firstname'=>"Text",'a.login'=>"Text",'a.morphy'=>'Text','a.societe'=>'Text','a.address'=>"Text",'a.zip'=>"Text",'a.town'=>"Text",'d.nom'=>"Text",'co.code'=>'Text','co.label'=>"Text",'a.phone'=>"Text",'a.phone_perso'=>"Text",'a.phone_mobile'=>"Text",'a.email'=>"Text",'a.birth'=>"Date",'a.statut'=>"Status",'a.note'=>"Text",'a.datec'=>'Date','a.datevalid'=>'Date','a.tms'=>'Date','a.datefin'=>'Date','ta.rowid'=>'List:fk_adherent_type:libelle','ta.libelle'=>'Text','c.dateadh'=>'Date','c.cotisation'=>'Number'); - $this->export_entities_array[$r]=array('a.rowid'=>'member','a.civilite'=>"member",'a.lastname'=>"member",'a.firstname'=>"member",'a.login'=>"member",'a.morphy'=>'member','a.societe'=>'member','a.address'=>"member",'a.zip'=>"member",'a.town'=>"member",'d.nom'=>"member",'co.code'=>"member",'co.label'=>"member",'a.phone'=>"member",'a.phone_perso'=>"member",'a.phone_mobile'=>"member",'a.email'=>"member",'a.birth'=>"member",'a.statut'=>"member",'a.photo'=>"member",'a.note'=>"member",'a.datec'=>'member','a.datevalid'=>'member','a.tms'=>'member','a.datefin'=>'member','ta.rowid'=>'member_type','ta.libelle'=>'member_type','c.rowid'=>'subscription','c.dateadh'=>'subscription','c.cotisation'=>'subscription'); + $this->export_fields_array[$r]=array('a.rowid'=>'Id','a.civility'=>"UserTitle",'a.lastname'=>"Lastname",'a.firstname'=>"Firstname",'a.login'=>"Login",'a.morphy'=>'Nature','a.societe'=>'Company','a.address'=>"Address",'a.zip'=>"Zip",'a.town'=>"Town",'d.nom'=>"State",'co.code'=>"CountryCode",'co.label'=>"Country",'a.phone'=>"PhonePro",'a.phone_perso'=>"PhonePerso",'a.phone_mobile'=>"PhoneMobile",'a.email'=>"Email",'a.birth'=>"Birthday",'a.statut'=>"Status",'a.photo'=>"Photo",'a.note'=>"Note",'a.datec'=>'DateCreation','a.datevalid'=>'DateValidation','a.tms'=>'DateLastModification','a.datefin'=>'DateEndSubscription','ta.rowid'=>'MemberTypeId','ta.libelle'=>'MemberTypeLabel','c.rowid'=>'SubscriptionId','c.dateadh'=>'DateSubscription','c.cotisation'=>'Amount'); + $this->export_TypeFields_array[$r]=array('a.civility'=>"Text",'a.lastname'=>"Text",'a.firstname'=>"Text",'a.login'=>"Text",'a.morphy'=>'Text','a.societe'=>'Text','a.address'=>"Text",'a.zip'=>"Text",'a.town'=>"Text",'d.nom'=>"Text",'co.code'=>'Text','co.label'=>"Text",'a.phone'=>"Text",'a.phone_perso'=>"Text",'a.phone_mobile'=>"Text",'a.email'=>"Text",'a.birth'=>"Date",'a.statut'=>"Status",'a.note'=>"Text",'a.datec'=>'Date','a.datevalid'=>'Date','a.tms'=>'Date','a.datefin'=>'Date','ta.rowid'=>'List:fk_adherent_type:libelle','ta.libelle'=>'Text','c.dateadh'=>'Date','c.cotisation'=>'Number'); + $this->export_entities_array[$r]=array('a.rowid'=>'member','a.civility'=>"member",'a.lastname'=>"member",'a.firstname'=>"member",'a.login'=>"member",'a.morphy'=>'member','a.societe'=>'member','a.address'=>"member",'a.zip'=>"member",'a.town'=>"member",'d.nom'=>"member",'co.code'=>"member",'co.label'=>"member",'a.phone'=>"member",'a.phone_perso'=>"member",'a.phone_mobile'=>"member",'a.email'=>"member",'a.birth'=>"member",'a.statut'=>"member",'a.photo'=>"member",'a.note'=>"member",'a.datec'=>'member','a.datevalid'=>'member','a.tms'=>'member','a.datefin'=>'member','ta.rowid'=>'member_type','ta.libelle'=>'member_type','c.rowid'=>'subscription','c.dateadh'=>'subscription','c.cotisation'=>'subscription'); + // Add extra fields $sql="SELECT name, label FROM ".MAIN_DB_PREFIX."extrafields WHERE elementtype = 'adherent' AND entity = ".$conf->entity; $resql=$this->db->query($sql); @@ -210,7 +211,7 @@ class modAdherent extends DolibarrModules $this->import_entities_array[$r]=array(); // We define here only fields that use another icon that the one defined into import_icon $this->import_tables_array[$r]=array('a'=>MAIN_DB_PREFIX.'adherent','extra'=>MAIN_DB_PREFIX.'adherent_extrafields'); $this->import_tables_creator_array[$r]=array('a'=>'fk_user_author'); // Fields to store import user id - $this->import_fields_array[$r]=array('a.civilite'=>"UserTitle",'a.lastname'=>"Lastname*",'a.firstname'=>"Firstname",'a.login'=>"Login*","a.pass"=>"Password","a.fk_adherent_type"=>"MemberType*",'a.morphy'=>'Nature*','a.societe'=>'Company','a.address'=>"Address",'a.zip'=>"Zip",'a.town'=>"Town",'a.state_id'=>'StateId','a.country'=>"CountryId",'a.phone'=>"PhonePro",'a.phone_perso'=>"PhonePerso",'a.phone_mobile'=>"PhoneMobile",'a.email'=>"Email",'a.birth'=>"Birthday",'a.statut'=>"Status*",'a.photo'=>"Photo",'a.note'=>"Note",'a.datec'=>'DateCreation','a.datefin'=>'DateEndSubscription'); + $this->import_fields_array[$r]=array('a.civility'=>"UserTitle",'a.lastname'=>"Lastname*",'a.firstname'=>"Firstname",'a.login'=>"Login*","a.pass"=>"Password","a.fk_adherent_type"=>"MemberType*",'a.morphy'=>'Nature*','a.societe'=>'Company','a.address'=>"Address",'a.zip'=>"Zip",'a.town'=>"Town",'a.state_id'=>'StateId','a.country'=>"CountryId",'a.phone'=>"PhonePro",'a.phone_perso'=>"PhonePerso",'a.phone_mobile'=>"PhoneMobile",'a.email'=>"Email",'a.birth'=>"Birthday",'a.statut'=>"Status*",'a.photo'=>"Photo",'a.note'=>"Note",'a.datec'=>'DateCreation','a.datefin'=>'DateEndSubscription'); // Add extra fields $sql="SELECT name, label, fieldrequired FROM ".MAIN_DB_PREFIX."extrafields WHERE elementtype = 'adherent' AND entity = ".$conf->entity; $resql=$this->db->query($sql); @@ -225,8 +226,8 @@ class modAdherent extends DolibarrModules } // End add extra fields $this->import_fieldshidden_array[$r]=array('extra.fk_object'=>'lastrowid-'.MAIN_DB_PREFIX.'adherent'); // aliastable.field => ('user->id' or 'lastrowid-'.tableparent) - $this->import_regex_array[$r]=array('a.civilite'=>'code@'.MAIN_DB_PREFIX.'c_civilite','a.fk_adherent_type'=>'rowid@'.MAIN_DB_PREFIX.'adherent_type','a.morphy'=>'(phy|mor)','a.statut'=>'^[0|1]','a.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$','a.datefin'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$'); - $this->import_examplevalues_array[$r]=array('a.civilite'=>"MR",'a.lastname'=>'Smith','a.firstname'=>'John','a.login'=>'jsmith','a.pass'=>'passofjsmith','a.fk_adherent_type'=>'1','a.morphy'=>'"mor" or "phy"','a.societe'=>'JS company','a.address'=>'21 jump street','a.zip'=>'55000','a.town'=>'New York','a.country'=>'1','a.email'=>'jsmith@example.com','a.birth'=>'1972-10-10','a.statut'=>"0 or 1",'a.note'=>"This is a comment on member",'a.datec'=>dol_print_date($now,'%Y-%m-%d'),'a.datefin'=>dol_print_date(dol_time_plus_duree($now, 1, 'y'),'%Y-%m-%d')); + $this->import_regex_array[$r]=array('a.civility'=>'code@'.MAIN_DB_PREFIX.'c_civility','a.fk_adherent_type'=>'rowid@'.MAIN_DB_PREFIX.'adherent_type','a.morphy'=>'(phy|mor)','a.statut'=>'^[0|1]','a.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$','a.datefin'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$'); + $this->import_examplevalues_array[$r]=array('a.civility'=>"MR",'a.lastname'=>'Smith','a.firstname'=>'John','a.login'=>'jsmith','a.pass'=>'passofjsmith','a.fk_adherent_type'=>'1','a.morphy'=>'"mor" or "phy"','a.societe'=>'JS company','a.address'=>'21 jump street','a.zip'=>'55000','a.town'=>'New York','a.country'=>'1','a.email'=>'jsmith@example.com','a.birth'=>'1972-10-10','a.statut'=>"0 or 1",'a.note'=>"This is a comment on member",'a.datec'=>dol_print_date($now,'%Y-%m-%d'),'a.datefin'=>dol_print_date(dol_time_plus_duree($now, 1, 'y'),'%Y-%m-%d')); } diff --git a/htdocs/core/modules/modCategorie.class.php b/htdocs/core/modules/modCategorie.class.php index 97b2d994b96..327608c8814 100644 --- a/htdocs/core/modules/modCategorie.class.php +++ b/htdocs/core/modules/modCategorie.class.php @@ -181,7 +181,7 @@ class modCategorie extends DolibarrModules 'u.label' => "Label", 'u.description' => "Description", 'p.rowid' => 'ContactId', - 'p.civilite' => 'Civility', + 'p.civility' => 'Civility', 'p.lastname' => 'LastName', 'p.firstname' => 'Firstname', 'p.address' => 'Address', @@ -211,7 +211,7 @@ class modCategorie extends DolibarrModules 'u.label' => "category", 'u.description' => "category", 'p.rowid' => 'contact', - 'p.civilite' => 'contact', + 'p.civility' => 'contact', 'p.lastname' => 'contact', 'p.firstname' => 'contact', 'p.address' => 'contact', diff --git a/htdocs/core/modules/modProductBatch.class.php b/htdocs/core/modules/modProductBatch.class.php index 2209fffb4ad..0cd30f04d22 100644 --- a/htdocs/core/modules/modProductBatch.class.php +++ b/htdocs/core/modules/modProductBatch.class.php @@ -78,13 +78,13 @@ class modProductBatch extends DolibarrModules $this->tabs = array(); - // Dictionnaries + // Dictionaries if (! isset($conf->productbatch->enabled)) { $conf->productbatch=new stdClass(); $conf->productbatch->enabled=0; } - $this->dictionnaries=array(); + $this->dictionaries=array(); // Boxes $this->boxes = array(); // List of boxes diff --git a/htdocs/core/modules/modSociete.class.php b/htdocs/core/modules/modSociete.class.php index 72191357590..28a5fcaebe3 100644 --- a/htdocs/core/modules/modSociete.class.php +++ b/htdocs/core/modules/modSociete.class.php @@ -320,8 +320,8 @@ class modSociete extends DolibarrModules $this->export_label[$r]='ExportDataset_company_2'; $this->export_icon[$r]='contact'; $this->export_permission[$r]=array(array("societe","contact","export")); - $this->export_fields_array[$r]=array('c.rowid'=>"IdContact",'c.civilite'=>"CivilityCode",'c.lastname'=>'Lastname','c.firstname'=>'Firstname','c.poste'=>'PostOrFunction','c.datec'=>"DateCreation",'c.tms'=>"DateLastModification",'c.priv'=>"ContactPrivate",'c.address'=>"Address",'c.zip'=>"Zip",'c.town'=>"Town",'d.nom'=>'State','co.label'=>"Country",'co.code'=>"CountryCode",'c.phone'=>"Phone",'c.fax'=>"Fax",'c.phone_mobile'=>"Mobile",'c.email'=>"EMail",'s.rowid'=>"IdCompany",'s.nom'=>"CompanyName",'s.status'=>"Status",'s.code_client'=>"CustomerCode",'s.code_fournisseur'=>"SupplierCode", 's.client'=>'Customer 0 (no customer no prospect)/1 (customer)/2 (prospect)/3 (customer and prospect)','s.fournisseur'=>'Supplier 0 or 1'); - $this->export_TypeFields_array[$r]=array('c.civilite'=>"List:c_civilite:civilite:code",'c.lastname'=>'Text','c.firstname'=>'Text','c.poste'=>'Text','c.datec'=>"Date",'c.priv'=>"Boolean",'c.address'=>"Text",'c.cp'=>"Text",'c.ville'=>"Text",'d.nom'=>'Text','co.label'=>"List:c_country:label:rowid",'co.code'=>"Text",'c.phone'=>"Text",'c.fax'=>"Text",'c.email'=>"Text",'s.rowid'=>"List:societe:nom",'s.nom'=>"Text",'s.status'=>"Status",'s.client'=>"Text",'s.fournisseur'=>"Text"); + $this->export_fields_array[$r]=array('c.rowid'=>"IdContact",'c.civility'=>"CivilityCode",'c.lastname'=>'Lastname','c.firstname'=>'Firstname','c.poste'=>'PostOrFunction','c.datec'=>"DateCreation",'c.tms'=>"DateLastModification",'c.priv'=>"ContactPrivate",'c.address'=>"Address",'c.zip'=>"Zip",'c.town'=>"Town",'d.nom'=>'State','p.libelle'=>"Country",'p.code'=>"CountryCode",'c.phone'=>"Phone",'c.fax'=>"Fax",'c.phone_mobile'=>"Mobile",'c.email'=>"EMail",'s.rowid'=>"IdCompany",'s.nom'=>"CompanyName",'s.status'=>"Status",'s.code_client'=>"CustomerCode",'s.code_fournisseur'=>"SupplierCode", 's.client'=>'Customer 0 (no customer no prospect)/1 (customer)/2 (prospect)/3 (customer and prospect)','s.fournisseur'=>'Supplier 0 or 1'); + $this->export_TypeFields_array[$r]=array('c.civility'=>"List:c_civility:label:code",'c.lastname'=>'Text','c.firstname'=>'Text','c.poste'=>'Text','c.datec'=>"Date",'c.priv'=>"Boolean",'c.address'=>"Text",'c.cp'=>"Text",'c.ville'=>"Text",'d.nom'=>'Text','co.label'=>"List:c_country:label:rowid",'co.code'=>"Text",'c.phone'=>"Text",'c.fax'=>"Text",'c.email'=>"Text",'s.rowid'=>"List:societe:nom",'s.nom'=>"Text",'s.status'=>"Status",'s.client'=>"Text",'s.fournisseur'=>"Text"); $this->export_entities_array[$r]=array('s.rowid'=>"company",'s.nom'=>"company",'s.code_client'=>"company",'s.code_fournisseur'=>"company", 's.client'=>"company", 's.fournisseur'=>"company"); // We define here only fields that use another picto if (empty($conf->fournisseur->enabled)) { @@ -417,7 +417,7 @@ class modSociete extends DolibarrModules $this->import_icon[$r]='contact'; $this->import_entities_array[$r]=array('s.fk_soc'=>'company'); // We define here only fields that use another icon that the one defined into import_icon $this->import_tables_array[$r]=array('s'=>MAIN_DB_PREFIX.'socpeople','extra'=>MAIN_DB_PREFIX.'socpeople_extrafields'); // List of tables to insert into (insert done in same order) - $this->import_fields_array[$r]=array('s.fk_soc'=>'ThirdPartyName','s.civilite'=>'UserTitle','s.lastname'=>"Lastname*",'s.firstname'=>"Firstname",'s.address'=>"Address",'s.zip'=>"Zip",'s.town'=>"Town",'s.fk_pays'=>"CountryCode",'s.birthday'=>"BirthdayDate",'s.poste'=>"Role",'s.phone'=>"Phone",'s.phone_perso'=>"PhonePerso",'s.phone_mobile'=>"PhoneMobile",'s.fax'=>"Fax",'s.email'=>"Email",'s.note_private'=>"Note",'s.note_public'=>"Note",'s.datec'=>"DateCreation"); + $this->import_fields_array[$r]=array('s.fk_soc'=>'ThirdPartyName','s.civility'=>'UserTitle','s.lastname'=>"Lastname*",'s.firstname'=>"Firstname",'s.address'=>"Address",'s.zip'=>"Zip",'s.town'=>"Town",'s.fk_pays'=>"CountryCode",'s.birthday'=>"BirthdayDate",'s.poste'=>"Role",'s.phone'=>"Phone",'s.phone_perso'=>"PhonePerso",'s.phone_mobile'=>"PhoneMobile",'s.fax'=>"Fax",'s.email'=>"Email",'s.note_private'=>"Note",'s.note_public'=>"Note",'s.datec'=>"DateCreation"); // Add extra fields $sql="SELECT name, label, fieldrequired FROM ".MAIN_DB_PREFIX."extrafields WHERE elementtype = 'socpeople' AND entity = ".$conf->entity; $resql=$this->db->query($sql); @@ -438,7 +438,7 @@ class modSociete extends DolibarrModules ); //$this->import_convertvalue_array[$r]=array('s.fk_soc'=>array('rule'=>'lastrowid',table='t'); $this->import_regex_array[$r]=array('s.birthday'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$','s.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$'); - $this->import_examplevalues_array[$r]=array('s.fk_soc'=>'MyBigCompany','s.civilite'=>"MR",'s.lastname'=>"Smith",'s.firstname'=>'John','s.address'=>'61 jump street','s.zip'=>'75000','s.town'=>'Bigtown','s.fk_pays'=>'US, FR, DE...','s.datec'=>'1972-10-10','s.poste'=>"Director",'s.phone'=>"5551122",'s.phone_perso'=>"5551133",'s.phone_mobile'=>"5551144",'s.fax'=>"5551155",'s.email'=>"johnsmith@email.com",'s.note_private'=>"My private note",'s.note_public'=>"My public note"); + $this->import_examplevalues_array[$r]=array('s.fk_soc'=>'MyBigCompany','s.civility'=>"MR",'s.lastname'=>"Smith",'s.firstname'=>'John','s.address'=>'61 jump street','s.zip'=>'75000','s.town'=>'Bigtown','s.fk_pays'=>'US, FR, DE...','s.datec'=>'1972-10-10','s.poste'=>"Director",'s.phone'=>"5551122",'s.phone_perso'=>"5551133",'s.phone_mobile'=>"5551144",'s.fax'=>"5551155",'s.email'=>"johnsmith@email.com",'s.note_private'=>"My private note",'s.note_public'=>"My public note"); // Import Bank Accounts $r++; diff --git a/htdocs/core/modules/project/modules_project.php b/htdocs/core/modules/project/modules_project.php index 363bfb67e80..ecaf0213bc0 100644 --- a/htdocs/core/modules/project/modules_project.php +++ b/htdocs/core/modules/project/modules_project.php @@ -225,13 +225,6 @@ function project_pdf_create($db, $object, $modele, $outputlangs, $hidedetails=0, // Success in building document. We build meta file. dol_meta_create($object); - // Appel des triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('PROJECT_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { $error++; $this->errors=$interface->errors; } - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/project/pdf/doc_generic_project_odt.modules.php b/htdocs/core/modules/project/pdf/doc_generic_project_odt.modules.php index 75b06755b80..5b3aa9a85e2 100644 --- a/htdocs/core/modules/project/pdf/doc_generic_project_odt.modules.php +++ b/htdocs/core/modules/project/pdf/doc_generic_project_odt.modules.php @@ -1019,6 +1019,8 @@ class doc_generic_project_odt extends ModelePDFProjects } } + $reshook=$hookmanager->executeHooks('afterODTCreation',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + if (! empty($conf->global->MAIN_UMASK)) @chmod($file, octdec($conf->global->MAIN_UMASK)); diff --git a/htdocs/core/modules/project/pdf/pdf_baleine.modules.php b/htdocs/core/modules/project/pdf/pdf_baleine.modules.php index c8cc0b65fbc..e727f9ba90b 100644 --- a/htdocs/core/modules/project/pdf/pdf_baleine.modules.php +++ b/htdocs/core/modules/project/pdf/pdf_baleine.modules.php @@ -295,6 +295,18 @@ class pdf_baleine extends ModelePDFProjects $pdf->Close(); $pdf->Output($file,'F'); + + // Add pdfgeneration hook + if (! is_object($hookmanager)) + { + include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php'; + $hookmanager=new HookManager($this->db); + } + $hookmanager->initHooks(array('pdfgeneration')); + $parameters=array('file'=>$file,'object'=>$object,'outputlangs'=>$outputlangs); + global $action; + $reshook=$hookmanager->executeHooks('afterPDFCreation',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + if (! empty($conf->global->MAIN_UMASK)) @chmod($file, octdec($conf->global->MAIN_UMASK)); @@ -442,7 +454,8 @@ class pdf_baleine extends ModelePDFProjects */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'PROJECT_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'PROJECT_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/project/task/modules_task.php b/htdocs/core/modules/project/task/modules_task.php index 8aacc535b7e..c72d221ead1 100644 --- a/htdocs/core/modules/project/task/modules_task.php +++ b/htdocs/core/modules/project/task/modules_task.php @@ -225,13 +225,6 @@ function task_pdf_create($db, $object, $modele, $outputlangs, $hidedetails=0, $h // Success in building document. We build meta file. dol_meta_create($object); - // Appel des triggers - /*include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('PROJECT_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { $error++; $this->errors=$interface->errors; }*/ - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/project/task/pdf/doc_generic_task_odt.modules.php b/htdocs/core/modules/project/task/pdf/doc_generic_task_odt.modules.php index 2c0bdc4f53b..acbd33bcc5a 100644 --- a/htdocs/core/modules/project/task/pdf/doc_generic_task_odt.modules.php +++ b/htdocs/core/modules/project/task/pdf/doc_generic_task_odt.modules.php @@ -816,9 +816,31 @@ class doc_generic_task_odt extends ModelePDFTask } + // Call the beforeODTSave hook + $parameters=array('odfHandler'=>&$odfHandler,'file'=>$file,'object'=>$object,'outputlangs'=>$outputlangs); + $reshook=$hookmanager->executeHooks('beforeODTSave',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + + // Write new file - $odfHandler->saveToDisk($file); - + if (!empty($conf->global->MAIN_ODT_AS_PDF)) { + try { + $odfHandler->exportAsAttachedPDF($file); + }catch (Exception $e){ + $this->error=$e->getMessage(); + return -1; + } + } + else { + try { + $odfHandler->saveToDisk($file); + }catch (Exception $e){ + $this->error=$e->getMessage(); + return -1; + } + } + + $reshook=$hookmanager->executeHooks('afterODTCreation',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + if (! empty($conf->global->MAIN_UMASK)) @chmod($file, octdec($conf->global->MAIN_UMASK)); diff --git a/htdocs/core/modules/propale/doc/doc_generic_proposal_odt.modules.php b/htdocs/core/modules/propale/doc/doc_generic_proposal_odt.modules.php index 9b03ecd1070..f216d69a0fd 100644 --- a/htdocs/core/modules/propale/doc/doc_generic_proposal_odt.modules.php +++ b/htdocs/core/modules/propale/doc/doc_generic_proposal_odt.modules.php @@ -517,6 +517,8 @@ class doc_generic_proposal_odt extends ModelePDFPropales } } + $reshook=$hookmanager->executeHooks('afterODTCreation',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + if (! empty($conf->global->MAIN_UMASK)) @chmod($file, octdec($conf->global->MAIN_UMASK)); diff --git a/htdocs/core/modules/propale/doc/pdf_azur.modules.php b/htdocs/core/modules/propale/doc/pdf_azur.modules.php index 4ac15330b42..4678b5a48af 100644 --- a/htdocs/core/modules/propale/doc/pdf_azur.modules.php +++ b/htdocs/core/modules/propale/doc/pdf_azur.modules.php @@ -1362,7 +1362,8 @@ class pdf_azur extends ModelePDFPropales */ function _pagefoot(&$pdf,$object,$outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'PROPALE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'PROPALE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/propale/modules_propale.php b/htdocs/core/modules/propale/modules_propale.php index 13b933b6ccf..04b75bae091 100644 --- a/htdocs/core/modules/propale/modules_propale.php +++ b/htdocs/core/modules/propale/modules_propale.php @@ -230,13 +230,6 @@ function propale_pdf_create($db, $object, $modele, $outputlangs, $hidedetails=0, // Success in building document. We build meta file. dol_meta_create($object); - // Appel des triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('PROPAL_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { $error++; $obj->errors=$interface->errors; } - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/societe/doc/doc_generic_odt.modules.php b/htdocs/core/modules/societe/doc/doc_generic_odt.modules.php index 539bc169958..90ced6322b7 100644 --- a/htdocs/core/modules/societe/doc/doc_generic_odt.modules.php +++ b/htdocs/core/modules/societe/doc/doc_generic_odt.modules.php @@ -416,6 +416,8 @@ class doc_generic_odt extends ModeleThirdPartyDoc } } + $reshook=$hookmanager->executeHooks('afterODTCreation',$parameters,$this,$action); // Note that $action and $object may have been modified by some hooks + if (! empty($conf->global->MAIN_UMASK)) @chmod($file, octdec($conf->global->MAIN_UMASK)); diff --git a/htdocs/core/modules/societe/modules_societe.class.php b/htdocs/core/modules/societe/modules_societe.class.php index 0a7245fc629..9a117ac8435 100644 --- a/htdocs/core/modules/societe/modules_societe.class.php +++ b/htdocs/core/modules/societe/modules_societe.class.php @@ -422,15 +422,6 @@ function thirdparty_doc_create($db, $object, $message, $modele, $outputlangs) { $outputlangs->charset_output=$sav_charset_output; - // Appel des triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('COMPANY_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { - $error++; $obj->errors=$interface->errors; - } - // Fin appel triggers - return 1; } else diff --git a/htdocs/core/modules/supplier_invoice/modules_facturefournisseur.php b/htdocs/core/modules/supplier_invoice/modules_facturefournisseur.php index 1a761bab636..1d4e9f262f8 100644 --- a/htdocs/core/modules/supplier_invoice/modules_facturefournisseur.php +++ b/htdocs/core/modules/supplier_invoice/modules_facturefournisseur.php @@ -221,13 +221,6 @@ function supplier_invoice_pdf_create($db, $object, $modele, $outputlangs, $hided require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; dol_delete_preview($object); - // Calls triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('BILL_SUPPLIER_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { $error++; $obj->errors=$interface->errors; } - // End calls triggers - return 1; } else diff --git a/htdocs/core/modules/supplier_invoice/pdf/pdf_canelle.modules.php b/htdocs/core/modules/supplier_invoice/pdf/pdf_canelle.modules.php index 848778275eb..49a46c79e2e 100644 --- a/htdocs/core/modules/supplier_invoice/pdf/pdf_canelle.modules.php +++ b/htdocs/core/modules/supplier_invoice/pdf/pdf_canelle.modules.php @@ -1052,7 +1052,8 @@ class pdf_canelle extends ModelePDFSuppliersInvoices */ function _pagefoot(&$pdf, $object, $outputlangs,$hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'SUPPLIER_INVOICE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'SUPPLIER_INVOICE_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/modules/supplier_order/modules_commandefournisseur.php b/htdocs/core/modules/supplier_order/modules_commandefournisseur.php index a08eb7f7ce4..edf2f928ddb 100644 --- a/htdocs/core/modules/supplier_order/modules_commandefournisseur.php +++ b/htdocs/core/modules/supplier_order/modules_commandefournisseur.php @@ -120,7 +120,7 @@ abstract class ModeleNumRefSuppliersOrders return $langs->trans("NotAvailable"); } - /** Returns version of the numbering model + /** Returns version of the numbering model * * @return string Value */ @@ -196,7 +196,7 @@ function supplier_order_pdf_create($db, $object, $modele, $outputlangs, $hidedet { $file = $prefix."_".$modele.".modules.php"; - // We check the model location + // We check the model location $file=dol_buildpath($reldir."core/modules/supplier_order/pdf/".$file,0); if (file_exists($file)) { @@ -226,15 +226,6 @@ function supplier_order_pdf_create($db, $object, $modele, $outputlangs, $hidedet require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; dol_delete_preview($object); - // Calls triggers - include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; - $interface=new Interfaces($db); - $result=$interface->run_triggers('ORDER_SUPPLIER_BUILDDOC',$object,$user,$langs,$conf); - if ($result < 0) { - $error++; $obj->errors=$interface->errors; - } - // End calls triggers - return 1; } else diff --git a/htdocs/core/modules/supplier_order/pdf/pdf_muscadet.modules.php b/htdocs/core/modules/supplier_order/pdf/pdf_muscadet.modules.php index d601167c26d..1c9315a61bd 100644 --- a/htdocs/core/modules/supplier_order/pdf/pdf_muscadet.modules.php +++ b/htdocs/core/modules/supplier_order/pdf/pdf_muscadet.modules.php @@ -701,7 +701,7 @@ class pdf_muscadet extends ModelePDFSuppliersOrders foreach( $this->localtax1 as $localtax_type => $localtax_rate ) { if (in_array((string) $localtax_type, array('2','4','6'))) continue; - + foreach( $localtax_rate as $tvakey => $tvaval ) { if ($tvakey != 0) // On affiche pas taux 0 @@ -733,7 +733,7 @@ class pdf_muscadet extends ModelePDFSuppliersOrders foreach( $this->localtax2 as $localtax_type => $localtax_rate ) { if (in_array((string) $localtax_type, array('2','4','6'))) continue; - + foreach( $localtax_rate as $tvakey => $tvaval ) { if ($tvakey != 0) // On affiche pas taux 0 @@ -1105,7 +1105,8 @@ class pdf_muscadet extends ModelePDFSuppliersOrders */ function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext=0) { - return pdf_pagefoot($pdf,$outputlangs,'SUPPLIER_ORDER_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,0,$hidefreetext); + $showdetails=0; + return pdf_pagefoot($pdf,$outputlangs,'SUPPLIER_ORDER_FREE_TEXT',$this->emetteur,$this->marge_basse,$this->marge_gauche,$this->page_hauteur,$object,$showdetails,$hidefreetext); } } diff --git a/htdocs/core/tpl/login.tpl.php b/htdocs/core/tpl/login.tpl.php index 55beeeebd98..dd50e24c8e6 100644 --- a/htdocs/core/tpl/login.tpl.php +++ b/htdocs/core/tpl/login.tpl.php @@ -30,6 +30,7 @@ if (! empty($conf->dol_use_jmobile)) $conf->use_javascript_ajax=1; $arrayofjs=array('/core/js/dst.js'.(empty($conf->dol_use_jmobile)?'':'?version='.urlencode(DOL_VERSION))); // Javascript code on logon page only to detect user tz, dst_observed, dst_first, dst_second $titleofloginpage=$langs->trans('Login').' '.$title; // title is defined by dol_loginfunction in security2.lib.php + print top_htmlhead('',$titleofloginpage,0,0,$arrayofjs); ?> @@ -65,7 +66,7 @@ $(document).ready(function () { - +
diff --git a/htdocs/core/triggers/interface_90_all_Demo.class.php-NORUN b/htdocs/core/triggers/interface_90_all_Demo.class.php-NORUN index c5749a18459..96401c77251 100644 --- a/htdocs/core/triggers/interface_90_all_Demo.class.php-NORUN +++ b/htdocs/core/triggers/interface_90_all_Demo.class.php-NORUN @@ -1,7 +1,7 @@ - * Copyright (C) 2005-2014 Regis Houssin - * Copyright (C) 2014 Marcos Garcƭa +/* Copyright (C) 2005-2014 Laurent Destailleur + * Copyright (C) 2005-2014 Regis Houssin + * Copyright (C) 2014 Marcos Garcƭa * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -118,7 +118,6 @@ class InterfaceDemo extends DolibarrTriggers case 'ORDER_CLONE': case 'ORDER_VALIDATE': case 'ORDER_DELETE': - case 'ORDER_BUILDDOC': case 'ORDER_SENTBYMAIL': case 'ORDER_CLASSIFY_BILLED': case 'LINEORDER_INSERT': @@ -134,7 +133,6 @@ class InterfaceDemo extends DolibarrTriggers case 'ORDER_SUPPLIER_REFUSE': case 'ORDER_SUPPLIER_CANCEL': case 'ORDER_SUPPLIER_SENTBYMAIL': - case 'ORDER_SUPPLIER_BUILDDOC': case 'LINEORDER_SUPPLIER_DISPATCH': case 'LINEORDER_SUPPLIER_CREATE': case 'LINEORDER_SUPPLIER_UPDATE': @@ -144,7 +142,6 @@ class InterfaceDemo extends DolibarrTriggers case 'PROPAL_CLONE': case 'PROPAL_MODIFY': case 'PROPAL_VALIDATE': - case 'PROPAL_BUILDDOC': case 'PROPAL_SENTBYMAIL': case 'PROPAL_CLOSE_SIGNED': case 'PROPAL_CLOSE_REFUSED': @@ -169,7 +166,6 @@ class InterfaceDemo extends DolibarrTriggers case 'BILL_MODIFY': case 'BILL_VALIDATE': case 'BILL_UNVALIDATE': - case 'BILL_BUILDDOC': case 'BILL_SENTBYMAIL': case 'BILL_CANCEL': case 'BILL_DELETE': @@ -227,7 +223,6 @@ class InterfaceDemo extends DolibarrTriggers case 'PROJECT_CREATE': case 'PROJECT_MODIFY': case 'PROJECT_DELETE': - case 'PROJECT_BUILDDOC': // Project tasks case 'TASK_CREATE': @@ -245,7 +240,6 @@ class InterfaceDemo extends DolibarrTriggers case 'SHIPPING_VALIDATE': case 'SHIPPING_SENTBYMAIL': case 'SHIPPING_DELETE': - case 'SHIPPING_BUILDDOC': dol_syslog("Trigger '".$this->name."' for action '$action' launched by ".__FILE__.". id=".$object->id); break; diff --git a/htdocs/fichinter/class/fichinter.class.php b/htdocs/fichinter/class/fichinter.class.php index 50a18f5e57c..cb4f178b840 100644 --- a/htdocs/fichinter/class/fichinter.class.php +++ b/htdocs/fichinter/class/fichinter.class.php @@ -224,7 +224,7 @@ class Fichinter extends CommonObject $this->db->begin(); $sql = "UPDATE ".MAIN_DB_PREFIX."fichinter SET "; - $sql.= ", description = '".$this->db->escape($this->description)."'"; + $sql.= "description = '".$this->db->escape($this->description)."'"; $sql.= ", duree = ".$this->duree; $sql.= ", fk_projet = ".$this->fk_project; $sql.= ", note_private = ".($this->note_private?"'".$this->db->escape($this->note_private)."'":"null"); @@ -365,7 +365,7 @@ class Fichinter extends CommonObject */ function setValid($user) { - global $langs, $conf; + global $conf; require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; $error=0; diff --git a/htdocs/fourn/class/fournisseur.product.class.php b/htdocs/fourn/class/fournisseur.product.class.php index 367ba5b972e..bbb6dbdb33a 100644 --- a/htdocs/fourn/class/fournisseur.product.class.php +++ b/htdocs/fourn/class/fournisseur.product.class.php @@ -154,7 +154,7 @@ class ProductFournisseur extends Product */ function update_buyprice($qty, $buyprice, $user, $price_base_type, $fourn, $availability, $ref_fourn, $tva_tx, $charges=0, $remise_percent=0, $remise=0, $newnpr=0) { - global $conf,$mysoc; + global $conf; // Clean parameter if (empty($qty)) $qty=0; diff --git a/htdocs/fourn/commande/fiche.php b/htdocs/fourn/commande/fiche.php index 1a28208c3a5..f4f69fbd269 100644 --- a/htdocs/fourn/commande/fiche.php +++ b/htdocs/fourn/commande/fiche.php @@ -161,10 +161,11 @@ else if ($action == 'setremisepercent' && $user->rights->fournisseur->commande-> else if ($action == 'reopen' && $user->rights->fournisseur->commande->approuver) { - if (in_array($object->statut, array(1, 5, 6, 7, 9))) + if (in_array($object->statut, array(1, 2, 5, 6, 7, 9))) { if ($object->statut == 1) $newstatus=0; // Validated->Draft - else if ($object->statut == 5) $newstatus=4; // Received->Received partially + else if ($object->statut == 2) $newstatus=0; // Approved->Draft + else if ($object->statut == 5) $newstatus=4; // Received->Received partially else if ($object->statut == 6) $newstatus=2; // Canceled->Approved else if ($object->statut == 7) $newstatus=3; // Canceled->Process running else if ($object->statut == 9) $newstatus=1; // Refused->Validated @@ -1857,7 +1858,7 @@ elseif (! empty($object->id)) } // Reopen - if (in_array($object->statut, array(5, 6, 7, 9))) + if (in_array($object->statut, array(2, 5, 6, 7, 9))) { if ($user->rights->fournisseur->commande->commander) { diff --git a/htdocs/install/mysql/data/llx_c_civilite.sql b/htdocs/install/mysql/data/llx_c_civilite.sql index 097539417ee..0d7c0753131 100644 --- a/htdocs/install/mysql/data/llx_c_civilite.sql +++ b/htdocs/install/mysql/data/llx_c_civilite.sql @@ -27,12 +27,12 @@ -- -- --- Civilites +-- Civilities -- -delete from llx_c_civilite; -insert into llx_c_civilite (rowid, code, civilite, active) values (1 , 'MME', 'Madame', 1); -insert into llx_c_civilite (rowid, code, civilite, active) values (3 , 'MR', 'Monsieur', 1); -insert into llx_c_civilite (rowid, code, civilite, active) values (5 , 'MLE', 'Mademoiselle', 1); -insert into llx_c_civilite (rowid, code, civilite, active) values (7 , 'MTRE', 'MaƮtre', 1); -insert into llx_c_civilite (rowid, code, civilite, active) values (8 , 'DR', 'Docteur', 1); +delete from llx_c_civility; +insert into llx_c_civility (rowid, code, label, active) values (1 , 'MME', 'Madame', 1); +insert into llx_c_civility (rowid, code, label, active) values (3 , 'MR', 'Monsieur', 1); +insert into llx_c_civility (rowid, code, label, active) values (5 , 'MLE', 'Mademoiselle', 1); +insert into llx_c_civility (rowid, code, label, active) values (7 , 'MTRE', 'MaƮtre', 1); +insert into llx_c_civility (rowid, code, label, active) values (8 , 'DR', 'Docteur', 1); diff --git a/htdocs/install/mysql/migration/3.6.0-3.7.0.sql b/htdocs/install/mysql/migration/3.6.0-3.7.0.sql index 13a28a37125..868496f3316 100644 --- a/htdocs/install/mysql/migration/3.6.0-3.7.0.sql +++ b/htdocs/install/mysql/migration/3.6.0-3.7.0.sql @@ -972,15 +972,23 @@ CREATE TABLE llx_holiday_types ( deleteAt DATETIME, nbCongesDeducted varchar(255) NOT NULL, nbCongesEveryMonth varchar(255) NOT NULL +); + +-- Change on table c_civilite +DROP INDEX uk_c_civilite ON llx_c_civilite; +ALTER TABLE llx_c_civilite RENAME TO llx_c_civility; +ALTER TABLE llx_c_civility CHANGE civilite label VARCHAR(50); +ALTER TABLE llx_c_civility ADD UNIQUE INDEX uk_c_civility(code); +ALTER TABLE llx_adherent CHANGE civilite civility VARCHAR(6); +ALTER TABLE llx_socpeople CHANGE civilite civility VARCHAR(6); +ALTER TABLE llx_user CHANGE civilite civility VARCHAR(6); ) ENGINE=innodb; ALTER TABLE llx_c_type_fees CHANGE libelle label VARCHAR(30); ALTER TABLE llx_c_type_fees ADD COLUMN accountancy_code varchar(32) DEFAULT NULL AFTER label; - ALTER TABLE llx_actioncomm ADD INDEX idx_actioncomm_fk_element (fk_element); ALTER TABLE llx_projet_task_time ADD INDEX idx_projet_task_time_task (fk_task); ALTER TABLE llx_projet_task_time ADD INDEX idx_projet_task_time_date (task_date); ALTER TABLE llx_projet_task_time ADD INDEX idx_projet_task_time_datehour (task_datehour); - diff --git a/htdocs/install/mysql/tables/llx_adherent.sql b/htdocs/install/mysql/tables/llx_adherent.sql index c74b1bcaa3c..9e4db2b604a 100644 --- a/htdocs/install/mysql/tables/llx_adherent.sql +++ b/htdocs/install/mysql/tables/llx_adherent.sql @@ -30,7 +30,7 @@ create table llx_adherent entity integer DEFAULT 1 NOT NULL, -- multi company id ref_ext varchar(128), -- reference into an external system (not used by dolibarr) - civilite varchar(6), + civility varchar(6), lastname varchar(50), firstname varchar(50), login varchar(50), -- login diff --git a/htdocs/install/mysql/tables/llx_c_civilite.key.sql b/htdocs/install/mysql/tables/llx_c_civility.key.sql similarity index 93% rename from htdocs/install/mysql/tables/llx_c_civilite.key.sql rename to htdocs/install/mysql/tables/llx_c_civility.key.sql index 1e8e7dee011..ff095fe9d03 100644 --- a/htdocs/install/mysql/tables/llx_c_civilite.key.sql +++ b/htdocs/install/mysql/tables/llx_c_civility.key.sql @@ -16,4 +16,4 @@ -- -- ======================================================================== -ALTER TABLE llx_c_civilite ADD UNIQUE INDEX uk_c_civilite(code); +ALTER TABLE llx_c_civility ADD UNIQUE INDEX uk_c_civility(code); diff --git a/htdocs/install/mysql/tables/llx_c_civilite.sql b/htdocs/install/mysql/tables/llx_c_civility.sql similarity index 95% rename from htdocs/install/mysql/tables/llx_c_civilite.sql rename to htdocs/install/mysql/tables/llx_c_civility.sql index da53e4789f7..139d0b68f3b 100644 --- a/htdocs/install/mysql/tables/llx_c_civilite.sql +++ b/htdocs/install/mysql/tables/llx_c_civility.sql @@ -17,11 +17,11 @@ -- -- ======================================================================== -create table llx_c_civilite +create table llx_c_civility ( rowid integer PRIMARY KEY, code varchar(6) NOT NULL, - civilite varchar(50), + label varchar(50), active tinyint DEFAULT 1 NOT NULL, module varchar(32) NULL )ENGINE=innodb; diff --git a/htdocs/install/mysql/tables/llx_socpeople.sql b/htdocs/install/mysql/tables/llx_socpeople.sql index 04635061e59..4b99598a3b9 100644 --- a/htdocs/install/mysql/tables/llx_socpeople.sql +++ b/htdocs/install/mysql/tables/llx_socpeople.sql @@ -26,7 +26,7 @@ create table llx_socpeople fk_soc integer, -- lien vers la societe entity integer DEFAULT 1 NOT NULL, -- multi company id ref_ext varchar(128), -- reference into an external system (not used by dolibarr) - civilite varchar(6), + civility varchar(6), lastname varchar(50), firstname varchar(50), address varchar(255), diff --git a/htdocs/install/mysql/tables/llx_user.sql b/htdocs/install/mysql/tables/llx_user.sql index 1462fcf09aa..8a75b545a54 100644 --- a/htdocs/install/mysql/tables/llx_user.sql +++ b/htdocs/install/mysql/tables/llx_user.sql @@ -34,7 +34,7 @@ create table llx_user pass varchar(32), pass_crypted varchar(128), pass_temp varchar(32), -- temporary password when asked for forget password - civilite varchar(6), + civility varchar(6), lastname varchar(50), firstname varchar(50), address varchar(255), -- user personal address diff --git a/htdocs/langs/en_US/admin.lang b/htdocs/langs/en_US/admin.lang index f4a7aa0f5c6..da61d43c1ad 100644 --- a/htdocs/langs/en_US/admin.lang +++ b/htdocs/langs/en_US/admin.lang @@ -133,7 +133,7 @@ Box=Box Boxes=Boxes MaxNbOfLinesForBoxes=Max number of lines for boxes PositionByDefault=Default order -Position=Order +Position=Position MenusDesc=Menus managers define content of the 2 menu bars (horizontal bar and vertical bar). MenusEditorDesc=The menu editor allow you to define personalized entries in menus. Use it carefully to avoid making dolibarr unstable and menu entries permanently unreachable.
Some modules add entries in the menus (in menu All in most cases). If you removed some of these entries by mistake, you can restore them by disabling and reenabling the module. MenuForUsers=Menu for users @@ -1082,6 +1082,7 @@ NotificationsDesc=EMails notifications feature allows you to silently send autom ModelModules=Documents templates DocumentModelOdt=Generate documents from OpenDocuments templates (.ODT or .ODS files for OpenOffice, KOffice, TextEdit,...) WatermarkOnDraft=Watermark on draft document +JSOnPaimentBill=Activate feature to autofill payment lines on payment form CompanyIdProfChecker=Rules on Professional Ids MustBeUnique=Must be unique ? MustBeMandatory=Mandatory to create third parties ? diff --git a/htdocs/langs/fr_FR/admin.lang b/htdocs/langs/fr_FR/admin.lang index 31996a4a74c..289b8401dbe 100644 --- a/htdocs/langs/fr_FR/admin.lang +++ b/htdocs/langs/fr_FR/admin.lang @@ -81,6 +81,8 @@ MustBeLowerThanPHPLimit=Remarque : Votre PHP limite la taille des envois à NoMaxSizeByPHPLimit=Aucune limite configurée dans votre serveur PHP MaxSizeForUploadedFiles=Taille maximum des fichiers envoyés (0 pour interdire l'envoi) UseCaptchaCode=Utilisation du code graphique (CAPTCHA) sur la page de connexion +HiddeNumVersion=Modifier titre du site +HiddeNumVersionExample=Remplace titre du site, si laisser vide cela affiche la valeur par defaut ( Dolibarr X.X.X ) UseAvToScanUploadedFiles=Utiliser un antivirus pour vérifier les fichiers envoyés AntiVirusCommand= Chemin complet vers la commande antivirus AntiVirusCommandExample= Exemple pour ClamWin : c:\\Progra~1\\ClamWin\\bin\\clamscan.exe
Exemple pour ClamAvĀ : /usr/bin/clamscan diff --git a/htdocs/projet/activity/list.php b/htdocs/projet/activity/list.php index 09cc56c54e8..c0b3743c980 100644 --- a/htdocs/projet/activity/list.php +++ b/htdocs/projet/activity/list.php @@ -121,7 +121,7 @@ $projectsListId = $projectstatic->getProjectsAuthorizedForUser($user,0,1); // R if ($id) { $project->fetch($id); - $project->societe->fetch($project->societe->id); + $project->fetch_thirdparty(); } $tasksarray=$taskstatic->getTasksArray(0,0,($project->id?$project->id:$projectsListId),$socid,0); // We want to see all task of project i am allowed to see, not only mine. Later only mine will be editable later. diff --git a/htdocs/projet/class/project.class.php b/htdocs/projet/class/project.class.php index 3279221d0c4..7f8fd52c500 100644 --- a/htdocs/projet/class/project.class.php +++ b/htdocs/projet/class/project.class.php @@ -53,7 +53,6 @@ class Project extends CommonObject var $statuts; var $oldcopy; - /** * Constructor * @@ -62,7 +61,6 @@ class Project extends CommonObject function __construct($db) { $this->db = $db; - $this->societe = new Societe($db); $this->statuts_short = array(0 => 'Draft', 1 => 'Opened', 2 => 'Closed'); $this->statuts = array(0 => 'Draft', 1 => 'Opened', 2 => 'Closed'); @@ -982,6 +980,7 @@ class Project extends CommonObject // Load source object $clone_project->fetch($fromid); + $clone_project->fetch_thirdparty(); $orign_dt_start=$clone_project->date_start; $orign_project_ref=$clone_project->ref; @@ -1009,7 +1008,7 @@ class Project extends CommonObject require_once DOL_DOCUMENT_ROOT ."/core/modules/project/".$conf->global->PROJECT_ADDON.'.php'; $modProject = new $obj; - $defaultref = $modProject->getNextValue($clone_project->societe->id,$clone_project); + $defaultref = $modProject->getNextValue(is_object($clone_project->thirdparty)?$clone_project->thirdparty->id:0,$clone_project); } if (is_numeric($defaultref) && $defaultref <= 0) $defaultref=''; diff --git a/htdocs/projet/element.php b/htdocs/projet/element.php index 53559c74333..abdf6f81b5b 100644 --- a/htdocs/projet/element.php +++ b/htdocs/projet/element.php @@ -89,7 +89,7 @@ $userstatic=new User($db); $project = new Project($db); $project->fetch($projectid,$ref); -$project->societe->fetch($project->societe->id); +$project->fetch_thirdparty(); // To verify role of users $userAccess = $project->restrictedProjectArea($user); @@ -115,7 +115,7 @@ print ''; print ''.$langs->trans("Label").''.$project->title.''; print ''.$langs->trans("ThirdParty").''; -if (! empty($project->societe->id)) print $project->societe->getNomUrl(1); +if (! empty($project->thirdparty->id)) print $project->thirdparty->getNomUrl(1); else print ' '; print ''; @@ -229,7 +229,7 @@ foreach ($listofreferent as $key => $value) print_titre($langs->trans($title)); - $selectList=$formproject->select_element($tablename,$project->societe->id); + $selectList=$formproject->select_element($tablename,$project->thirdparty->id); if (!$selectList || ($selectList<0)) { setEventMessage($formproject->error,'errors'); @@ -244,7 +244,7 @@ foreach ($listofreferent as $key => $value) print ''; } print ''; - + print ''; print ''; print ''; @@ -272,7 +272,7 @@ foreach ($listofreferent as $key => $value) { if ($element->close_code == 'replaced') $qualifiedfortotal=false; // Replacement invoice } - + $var=!$var; print ""; @@ -294,7 +294,7 @@ foreach ($listofreferent as $key => $value) print ''; // Amount - if (empty($value['disableamount'])) + if (empty($value['disableamount'])) { print '
'.$langs->trans("Ref").''.$langs->trans("Date").'
'; if (! $qualifiedfortotal) print ''; @@ -304,7 +304,7 @@ foreach ($listofreferent as $key => $value) } // Amount - if (empty($value['disableamount'])) + if (empty($value['disableamount'])) { print ''; if (! $qualifiedfortotal) print ''; @@ -341,30 +341,30 @@ foreach ($listofreferent as $key => $value) if ($project->statut > 0) { - if ($project->societe->prospect || $project->societe->client) + if ($project->thirdparty->prospect || $project->thirdparty->client) { if ($key == 'propal' && ! empty($conf->propal->enabled) && $user->rights->propale->creer) { - print ''.$langs->trans("AddProp").''; + print ''.$langs->trans("AddProp").''; } if ($key == 'order' && ! empty($conf->commande->enabled) && $user->rights->commande->creer) { - print ''.$langs->trans("AddCustomerOrder").''; + print ''.$langs->trans("AddCustomerOrder").''; } if ($key == 'invoice' && ! empty($conf->facture->enabled) && $user->rights->facture->creer) { - print ''.$langs->trans("AddCustomerInvoice").''; + print ''.$langs->trans("AddCustomerInvoice").''; } } - if ($project->societe->fournisseur) + if ($project->thirdparty->fournisseur) { if ($key == 'order_supplier' && ! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->commande->creer) { - print ''.$langs->trans("AddSupplierInvoice").''; + print ''.$langs->trans("AddSupplierInvoice").''; } if ($key == 'invoice_supplier' && ! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture->creer) { - print ''.$langs->trans("AddSupplierOrder").''; + print ''.$langs->trans("AddSupplierOrder").''; } } } diff --git a/htdocs/theme/amarok/img/1downarrow.png b/htdocs/theme/amarok/img/1downarrow.png old mode 100755 new mode 100644 index aa77afde326..33c655f345d Binary files a/htdocs/theme/amarok/img/1downarrow.png and b/htdocs/theme/amarok/img/1downarrow.png differ diff --git a/htdocs/theme/amarok/img/1downarrow_selected.png b/htdocs/theme/amarok/img/1downarrow_selected.png old mode 100755 new mode 100644 index cf70206a39b..c8615bac56c Binary files a/htdocs/theme/amarok/img/1downarrow_selected.png and b/htdocs/theme/amarok/img/1downarrow_selected.png differ diff --git a/htdocs/theme/amarok/img/1leftarrow.png b/htdocs/theme/amarok/img/1leftarrow.png old mode 100755 new mode 100644 index d81d4c089a1..a24894e25df Binary files a/htdocs/theme/amarok/img/1leftarrow.png and b/htdocs/theme/amarok/img/1leftarrow.png differ diff --git a/htdocs/theme/amarok/img/1leftarrow_selected.png b/htdocs/theme/amarok/img/1leftarrow_selected.png old mode 100755 new mode 100644 index 2b634693801..912f9a753be Binary files a/htdocs/theme/amarok/img/1leftarrow_selected.png and b/htdocs/theme/amarok/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/amarok/img/1rightarrow.png b/htdocs/theme/amarok/img/1rightarrow.png old mode 100755 new mode 100644 index e80c81c6dd7..b6474eaad46 Binary files a/htdocs/theme/amarok/img/1rightarrow.png and b/htdocs/theme/amarok/img/1rightarrow.png differ diff --git a/htdocs/theme/amarok/img/1rightarrow_selected.png b/htdocs/theme/amarok/img/1rightarrow_selected.png old mode 100755 new mode 100644 index c19598f1e02..911ce8e2d56 Binary files a/htdocs/theme/amarok/img/1rightarrow_selected.png and b/htdocs/theme/amarok/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/amarok/img/1uparrow.png b/htdocs/theme/amarok/img/1uparrow.png old mode 100755 new mode 100644 index 2e260bfce2a..b0d939999bd Binary files a/htdocs/theme/amarok/img/1uparrow.png and b/htdocs/theme/amarok/img/1uparrow.png differ diff --git a/htdocs/theme/amarok/img/1uparrow_selected.png b/htdocs/theme/amarok/img/1uparrow_selected.png old mode 100755 new mode 100644 index 28550cdda71..f311f885994 Binary files a/htdocs/theme/amarok/img/1uparrow_selected.png and b/htdocs/theme/amarok/img/1uparrow_selected.png differ diff --git a/htdocs/theme/amarok/img/1updownarrow.png b/htdocs/theme/amarok/img/1updownarrow.png old mode 100755 new mode 100644 index bd0e6b02ef5..07ae44c2c51 Binary files a/htdocs/theme/amarok/img/1updownarrow.png and b/htdocs/theme/amarok/img/1updownarrow.png differ diff --git a/htdocs/theme/amarok/img/addfile.png b/htdocs/theme/amarok/img/addfile.png old mode 100755 new mode 100644 index 135d539ed9d..35ace7e4cf2 Binary files a/htdocs/theme/amarok/img/addfile.png and b/htdocs/theme/amarok/img/addfile.png differ diff --git a/htdocs/theme/amarok/img/background_login.png b/htdocs/theme/amarok/img/background_login.png index 88594ffd7ca..e981431ce51 100644 Binary files a/htdocs/theme/amarok/img/background_login.png and b/htdocs/theme/amarok/img/background_login.png differ diff --git a/htdocs/theme/amarok/img/button_edit.png b/htdocs/theme/amarok/img/button_edit.png old mode 100755 new mode 100644 index 8e39750c569..2118cf41db3 Binary files a/htdocs/theme/amarok/img/button_edit.png and b/htdocs/theme/amarok/img/button_edit.png differ diff --git a/htdocs/theme/amarok/img/calc.png b/htdocs/theme/amarok/img/calc.png old mode 100755 new mode 100644 index fd9344db65f..11142a85f66 Binary files a/htdocs/theme/amarok/img/calc.png and b/htdocs/theme/amarok/img/calc.png differ diff --git a/htdocs/theme/amarok/img/calendar.png b/htdocs/theme/amarok/img/calendar.png old mode 100755 new mode 100644 index fe9d5317763..9238928c701 Binary files a/htdocs/theme/amarok/img/calendar.png and b/htdocs/theme/amarok/img/calendar.png differ diff --git a/htdocs/theme/amarok/img/call.png b/htdocs/theme/amarok/img/call.png old mode 100755 new mode 100644 index 55f8b311f78..c0d4c2d9200 Binary files a/htdocs/theme/amarok/img/call.png and b/htdocs/theme/amarok/img/call.png differ diff --git a/htdocs/theme/amarok/img/call_out.png b/htdocs/theme/amarok/img/call_out.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/amarok/img/close.png b/htdocs/theme/amarok/img/close.png old mode 100755 new mode 100644 index e6a186ac71d..1acc7a534d9 Binary files a/htdocs/theme/amarok/img/close.png and b/htdocs/theme/amarok/img/close.png differ diff --git a/htdocs/theme/amarok/img/close_title.png b/htdocs/theme/amarok/img/close_title.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/amarok/img/close_title.png and b/htdocs/theme/amarok/img/close_title.png differ diff --git a/htdocs/theme/amarok/img/delete.png b/htdocs/theme/amarok/img/delete.png old mode 100755 new mode 100644 index 6b9fa6dd36e..a8706fe5011 Binary files a/htdocs/theme/amarok/img/delete.png and b/htdocs/theme/amarok/img/delete.png differ diff --git a/htdocs/theme/amarok/img/detail.png b/htdocs/theme/amarok/img/detail.png old mode 100755 new mode 100644 index d8b59e60497..10dc7d72019 Binary files a/htdocs/theme/amarok/img/detail.png and b/htdocs/theme/amarok/img/detail.png differ diff --git a/htdocs/theme/amarok/img/disable.png b/htdocs/theme/amarok/img/disable.png old mode 100755 new mode 100644 index b14af18f6f7..f7322f6d68a Binary files a/htdocs/theme/amarok/img/disable.png and b/htdocs/theme/amarok/img/disable.png differ diff --git a/htdocs/theme/amarok/img/edit.png b/htdocs/theme/amarok/img/edit.png old mode 100755 new mode 100644 index 340b12633e6..faff605e3ca Binary files a/htdocs/theme/amarok/img/edit.png and b/htdocs/theme/amarok/img/edit.png differ diff --git a/htdocs/theme/amarok/img/edit_add.png b/htdocs/theme/amarok/img/edit_add.png old mode 100755 new mode 100644 index 4ac1bafbcc6..8a5877aeeb5 Binary files a/htdocs/theme/amarok/img/edit_add.png and b/htdocs/theme/amarok/img/edit_add.png differ diff --git a/htdocs/theme/amarok/img/edit_remove.png b/htdocs/theme/amarok/img/edit_remove.png old mode 100755 new mode 100644 index f953427ffbc..0f32e706b39 Binary files a/htdocs/theme/amarok/img/edit_remove.png and b/htdocs/theme/amarok/img/edit_remove.png differ diff --git a/htdocs/theme/amarok/img/editdelete.png b/htdocs/theme/amarok/img/editdelete.png old mode 100755 new mode 100644 index b14af18f6f7..f7322f6d68a Binary files a/htdocs/theme/amarok/img/editdelete.png and b/htdocs/theme/amarok/img/editdelete.png differ diff --git a/htdocs/theme/amarok/img/error.png b/htdocs/theme/amarok/img/error.png old mode 100755 new mode 100644 index 517725822ba..899fa9f6b63 Binary files a/htdocs/theme/amarok/img/error.png and b/htdocs/theme/amarok/img/error.png differ diff --git a/htdocs/theme/amarok/img/file.png b/htdocs/theme/amarok/img/file.png old mode 100755 new mode 100644 index 6a05d3a8e2a..221eaf83e86 Binary files a/htdocs/theme/amarok/img/file.png and b/htdocs/theme/amarok/img/file.png differ diff --git a/htdocs/theme/amarok/img/filenew.png b/htdocs/theme/amarok/img/filenew.png old mode 100755 new mode 100644 index 61f56baba39..92995d64faa Binary files a/htdocs/theme/amarok/img/filenew.png and b/htdocs/theme/amarok/img/filenew.png differ diff --git a/htdocs/theme/amarok/img/filter.png b/htdocs/theme/amarok/img/filter.png old mode 100755 new mode 100644 index e914fdec003..ec64ee55bcd Binary files a/htdocs/theme/amarok/img/filter.png and b/htdocs/theme/amarok/img/filter.png differ diff --git a/htdocs/theme/amarok/img/folder-open.png b/htdocs/theme/amarok/img/folder-open.png old mode 100755 new mode 100644 index 10ee9609794..186680e7ff4 Binary files a/htdocs/theme/amarok/img/folder-open.png and b/htdocs/theme/amarok/img/folder-open.png differ diff --git a/htdocs/theme/amarok/img/folder.png b/htdocs/theme/amarok/img/folder.png old mode 100755 new mode 100644 index 6db3c0e0c5f..5c28dea0aa5 Binary files a/htdocs/theme/amarok/img/folder.png and b/htdocs/theme/amarok/img/folder.png differ diff --git a/htdocs/theme/amarok/img/grip.png b/htdocs/theme/amarok/img/grip.png old mode 100755 new mode 100644 index 216e51ca8f0..8053007e9dd Binary files a/htdocs/theme/amarok/img/grip.png and b/htdocs/theme/amarok/img/grip.png differ diff --git a/htdocs/theme/amarok/img/grip_title.png b/htdocs/theme/amarok/img/grip_title.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/amarok/img/grip_title.png and b/htdocs/theme/amarok/img/grip_title.png differ diff --git a/htdocs/theme/amarok/img/help.png b/htdocs/theme/amarok/img/help.png old mode 100755 new mode 100644 index 310f9b08eac..f092e463807 Binary files a/htdocs/theme/amarok/img/help.png and b/htdocs/theme/amarok/img/help.png differ diff --git a/htdocs/theme/amarok/img/helpdoc.png b/htdocs/theme/amarok/img/helpdoc.png old mode 100755 new mode 100644 index 8b33d5e5536..02ea7c7a194 Binary files a/htdocs/theme/amarok/img/helpdoc.png and b/htdocs/theme/amarok/img/helpdoc.png differ diff --git a/htdocs/theme/amarok/img/high.png b/htdocs/theme/amarok/img/high.png old mode 100755 new mode 100644 index 517725822ba..899fa9f6b63 Binary files a/htdocs/theme/amarok/img/high.png and b/htdocs/theme/amarok/img/high.png differ diff --git a/htdocs/theme/amarok/img/history.png b/htdocs/theme/amarok/img/history.png old mode 100755 new mode 100644 index cc68175ed89..1e37cac68a7 Binary files a/htdocs/theme/amarok/img/history.png and b/htdocs/theme/amarok/img/history.png differ diff --git a/htdocs/theme/amarok/img/indent1.png b/htdocs/theme/amarok/img/indent1.png old mode 100755 new mode 100644 index 11effb043d5..0acd18fe2bb Binary files a/htdocs/theme/amarok/img/indent1.png and b/htdocs/theme/amarok/img/indent1.png differ diff --git a/htdocs/theme/amarok/img/info.png b/htdocs/theme/amarok/img/info.png old mode 100755 new mode 100644 index da1b7c55032..5f7683898a8 Binary files a/htdocs/theme/amarok/img/info.png and b/htdocs/theme/amarok/img/info.png differ diff --git a/htdocs/theme/amarok/img/lock.png b/htdocs/theme/amarok/img/lock.png old mode 100755 new mode 100644 index 73dc0eb27ce..fed5806fdda Binary files a/htdocs/theme/amarok/img/lock.png and b/htdocs/theme/amarok/img/lock.png differ diff --git a/htdocs/theme/amarok/img/logout.png b/htdocs/theme/amarok/img/logout.png old mode 100755 new mode 100644 index 73dc0eb27ce..fed5806fdda Binary files a/htdocs/theme/amarok/img/logout.png and b/htdocs/theme/amarok/img/logout.png differ diff --git a/htdocs/theme/amarok/img/money.png b/htdocs/theme/amarok/img/money.png old mode 100755 new mode 100644 index f68a1b84715..d8c8109abca Binary files a/htdocs/theme/amarok/img/money.png and b/htdocs/theme/amarok/img/money.png differ diff --git a/htdocs/theme/amarok/img/next.png b/htdocs/theme/amarok/img/next.png old mode 100755 new mode 100644 index f389ed680c1..774ca27e79b Binary files a/htdocs/theme/amarok/img/next.png and b/htdocs/theme/amarok/img/next.png differ diff --git a/htdocs/theme/amarok/img/object_account.png b/htdocs/theme/amarok/img/object_account.png old mode 100755 new mode 100644 index cf94186c436..d41f8fdee80 Binary files a/htdocs/theme/amarok/img/object_account.png and b/htdocs/theme/amarok/img/object_account.png differ diff --git a/htdocs/theme/amarok/img/object_action.png b/htdocs/theme/amarok/img/object_action.png old mode 100755 new mode 100644 index fe9d5317763..9238928c701 Binary files a/htdocs/theme/amarok/img/object_action.png and b/htdocs/theme/amarok/img/object_action.png differ diff --git a/htdocs/theme/amarok/img/object_action_rdv.png b/htdocs/theme/amarok/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/amarok/img/object_action_rdv.png and b/htdocs/theme/amarok/img/object_action_rdv.png differ diff --git a/htdocs/theme/amarok/img/object_barcode.png b/htdocs/theme/amarok/img/object_barcode.png old mode 100755 new mode 100644 index 9bb4daab07a..3296d7bedf6 Binary files a/htdocs/theme/amarok/img/object_barcode.png and b/htdocs/theme/amarok/img/object_barcode.png differ diff --git a/htdocs/theme/amarok/img/object_bill.png b/htdocs/theme/amarok/img/object_bill.png old mode 100755 new mode 100644 index a9095ae91da..b9af25f5788 Binary files a/htdocs/theme/amarok/img/object_bill.png and b/htdocs/theme/amarok/img/object_bill.png differ diff --git a/htdocs/theme/amarok/img/object_billa.png b/htdocs/theme/amarok/img/object_billa.png old mode 100755 new mode 100644 index 02185ffd161..bc9a81ea505 Binary files a/htdocs/theme/amarok/img/object_billa.png and b/htdocs/theme/amarok/img/object_billa.png differ diff --git a/htdocs/theme/amarok/img/object_billd.png b/htdocs/theme/amarok/img/object_billd.png old mode 100755 new mode 100644 index d29e0cec904..5558e18d682 Binary files a/htdocs/theme/amarok/img/object_billd.png and b/htdocs/theme/amarok/img/object_billd.png differ diff --git a/htdocs/theme/amarok/img/object_billr.png b/htdocs/theme/amarok/img/object_billr.png old mode 100755 new mode 100644 index 940b1db8c6d..7c7601ac88d Binary files a/htdocs/theme/amarok/img/object_billr.png and b/htdocs/theme/amarok/img/object_billr.png differ diff --git a/htdocs/theme/amarok/img/object_book.png b/htdocs/theme/amarok/img/object_book.png old mode 100755 new mode 100644 index 91e9faeb7a1..2532b9e46bb Binary files a/htdocs/theme/amarok/img/object_book.png and b/htdocs/theme/amarok/img/object_book.png differ diff --git a/htdocs/theme/amarok/img/object_bookmark.png b/htdocs/theme/amarok/img/object_bookmark.png old mode 100755 new mode 100644 index 16b409b6656..a33b726273e Binary files a/htdocs/theme/amarok/img/object_bookmark.png and b/htdocs/theme/amarok/img/object_bookmark.png differ diff --git a/htdocs/theme/amarok/img/object_calendar.png b/htdocs/theme/amarok/img/object_calendar.png old mode 100755 new mode 100644 index 6df0766f839..a9e239feec0 Binary files a/htdocs/theme/amarok/img/object_calendar.png and b/htdocs/theme/amarok/img/object_calendar.png differ diff --git a/htdocs/theme/amarok/img/object_calendarday.png b/htdocs/theme/amarok/img/object_calendarday.png old mode 100755 new mode 100644 index 3b0cc640693..eca345725a2 Binary files a/htdocs/theme/amarok/img/object_calendarday.png and b/htdocs/theme/amarok/img/object_calendarday.png differ diff --git a/htdocs/theme/amarok/img/object_calendarweek.png b/htdocs/theme/amarok/img/object_calendarweek.png old mode 100755 new mode 100644 index d45ba9c270f..807b7d5e53f Binary files a/htdocs/theme/amarok/img/object_calendarweek.png and b/htdocs/theme/amarok/img/object_calendarweek.png differ diff --git a/htdocs/theme/amarok/img/object_category-expanded.png b/htdocs/theme/amarok/img/object_category-expanded.png old mode 100755 new mode 100644 index 10ee9609794..186680e7ff4 Binary files a/htdocs/theme/amarok/img/object_category-expanded.png and b/htdocs/theme/amarok/img/object_category-expanded.png differ diff --git a/htdocs/theme/amarok/img/object_category.png b/htdocs/theme/amarok/img/object_category.png old mode 100755 new mode 100644 index 6db3c0e0c5f..5c28dea0aa5 Binary files a/htdocs/theme/amarok/img/object_category.png and b/htdocs/theme/amarok/img/object_category.png differ diff --git a/htdocs/theme/amarok/img/object_commercial.png b/htdocs/theme/amarok/img/object_commercial.png old mode 100755 new mode 100644 index ced060d8701..eea2b611196 Binary files a/htdocs/theme/amarok/img/object_commercial.png and b/htdocs/theme/amarok/img/object_commercial.png differ diff --git a/htdocs/theme/amarok/img/object_company.png b/htdocs/theme/amarok/img/object_company.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/amarok/img/object_contact.png b/htdocs/theme/amarok/img/object_contact.png old mode 100755 new mode 100644 index f10bfb0d29b..e837d2e70bc Binary files a/htdocs/theme/amarok/img/object_contact.png and b/htdocs/theme/amarok/img/object_contact.png differ diff --git a/htdocs/theme/amarok/img/object_contact_all.png b/htdocs/theme/amarok/img/object_contact_all.png old mode 100755 new mode 100644 index 79ef3657dde..83b2c8ec0a3 Binary files a/htdocs/theme/amarok/img/object_contact_all.png and b/htdocs/theme/amarok/img/object_contact_all.png differ diff --git a/htdocs/theme/amarok/img/object_contract.png b/htdocs/theme/amarok/img/object_contract.png old mode 100755 new mode 100644 index f34600c0a37..a3d207dec20 Binary files a/htdocs/theme/amarok/img/object_contract.png and b/htdocs/theme/amarok/img/object_contract.png differ diff --git a/htdocs/theme/amarok/img/object_cron.png b/htdocs/theme/amarok/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/amarok/img/object_cron.png and b/htdocs/theme/amarok/img/object_cron.png differ diff --git a/htdocs/theme/amarok/img/object_dir.png b/htdocs/theme/amarok/img/object_dir.png old mode 100755 new mode 100644 index bce6c87554c..996415f98e3 Binary files a/htdocs/theme/amarok/img/object_dir.png and b/htdocs/theme/amarok/img/object_dir.png differ diff --git a/htdocs/theme/amarok/img/object_email.png b/htdocs/theme/amarok/img/object_email.png old mode 100755 new mode 100644 index 4e6fdc56c7b..5657fdb26c0 Binary files a/htdocs/theme/amarok/img/object_email.png and b/htdocs/theme/amarok/img/object_email.png differ diff --git a/htdocs/theme/amarok/img/object_energie.png b/htdocs/theme/amarok/img/object_energie.png old mode 100755 new mode 100644 index 7b588777ce7..255b847da99 Binary files a/htdocs/theme/amarok/img/object_energie.png and b/htdocs/theme/amarok/img/object_energie.png differ diff --git a/htdocs/theme/amarok/img/object_generic.png b/htdocs/theme/amarok/img/object_generic.png old mode 100755 new mode 100644 index 2de348dcceb..1128986cecd Binary files a/htdocs/theme/amarok/img/object_generic.png and b/htdocs/theme/amarok/img/object_generic.png differ diff --git a/htdocs/theme/amarok/img/object_globe.png b/htdocs/theme/amarok/img/object_globe.png old mode 100755 new mode 100644 index 183a68127ee..238b830405f Binary files a/htdocs/theme/amarok/img/object_globe.png and b/htdocs/theme/amarok/img/object_globe.png differ diff --git a/htdocs/theme/amarok/img/object_group.png b/htdocs/theme/amarok/img/object_group.png old mode 100755 new mode 100644 index 79ef3657dde..83b2c8ec0a3 Binary files a/htdocs/theme/amarok/img/object_group.png and b/htdocs/theme/amarok/img/object_group.png differ diff --git a/htdocs/theme/amarok/img/object_holiday.png b/htdocs/theme/amarok/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/amarok/img/object_holiday.png and b/htdocs/theme/amarok/img/object_holiday.png differ diff --git a/htdocs/theme/amarok/img/object_intervention.png b/htdocs/theme/amarok/img/object_intervention.png old mode 100755 new mode 100644 index aeb415bec03..84f5b87c805 Binary files a/htdocs/theme/amarok/img/object_intervention.png and b/htdocs/theme/amarok/img/object_intervention.png differ diff --git a/htdocs/theme/amarok/img/object_invoice.png b/htdocs/theme/amarok/img/object_invoice.png old mode 100755 new mode 100644 index a9095ae91da..b9af25f5788 Binary files a/htdocs/theme/amarok/img/object_invoice.png and b/htdocs/theme/amarok/img/object_invoice.png differ diff --git a/htdocs/theme/amarok/img/object_label.png b/htdocs/theme/amarok/img/object_label.png old mode 100755 new mode 100644 index b94c72400e4..a73cbb9e9bb Binary files a/htdocs/theme/amarok/img/object_label.png and b/htdocs/theme/amarok/img/object_label.png differ diff --git a/htdocs/theme/amarok/img/object_list.png b/htdocs/theme/amarok/img/object_list.png old mode 100755 new mode 100644 index 48446ce5444..edd4a53aefa Binary files a/htdocs/theme/amarok/img/object_list.png and b/htdocs/theme/amarok/img/object_list.png differ diff --git a/htdocs/theme/amarok/img/object_opensurvey.png b/htdocs/theme/amarok/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/amarok/img/object_opensurvey.png and b/htdocs/theme/amarok/img/object_opensurvey.png differ diff --git a/htdocs/theme/amarok/img/object_order.png b/htdocs/theme/amarok/img/object_order.png old mode 100755 new mode 100644 index 9774306827a..6550c11c061 Binary files a/htdocs/theme/amarok/img/object_order.png and b/htdocs/theme/amarok/img/object_order.png differ diff --git a/htdocs/theme/amarok/img/object_payment.png b/htdocs/theme/amarok/img/object_payment.png old mode 100755 new mode 100644 index 562d972db35..7215fc22aa8 Binary files a/htdocs/theme/amarok/img/object_payment.png and b/htdocs/theme/amarok/img/object_payment.png differ diff --git a/htdocs/theme/amarok/img/object_phoning.png b/htdocs/theme/amarok/img/object_phoning.png old mode 100755 new mode 100644 index 9395d988480..b1266e84127 Binary files a/htdocs/theme/amarok/img/object_phoning.png and b/htdocs/theme/amarok/img/object_phoning.png differ diff --git a/htdocs/theme/amarok/img/object_product.png b/htdocs/theme/amarok/img/object_product.png old mode 100755 new mode 100644 index cf49e8a072e..cb94e71a868 Binary files a/htdocs/theme/amarok/img/object_product.png and b/htdocs/theme/amarok/img/object_product.png differ diff --git a/htdocs/theme/amarok/img/object_project.png b/htdocs/theme/amarok/img/object_project.png old mode 100755 new mode 100644 index 0b9fa5a1ac5..68bb77ae989 Binary files a/htdocs/theme/amarok/img/object_project.png and b/htdocs/theme/amarok/img/object_project.png differ diff --git a/htdocs/theme/amarok/img/object_projectpub.png b/htdocs/theme/amarok/img/object_projectpub.png old mode 100755 new mode 100644 index f38b8664cfa..b50dba8ef2d Binary files a/htdocs/theme/amarok/img/object_projectpub.png and b/htdocs/theme/amarok/img/object_projectpub.png differ diff --git a/htdocs/theme/amarok/img/object_projecttask.png b/htdocs/theme/amarok/img/object_projecttask.png old mode 100755 new mode 100644 index 0023b3a75bd..2dc8d0111b6 Binary files a/htdocs/theme/amarok/img/object_projecttask.png and b/htdocs/theme/amarok/img/object_projecttask.png differ diff --git a/htdocs/theme/amarok/img/object_propal.png b/htdocs/theme/amarok/img/object_propal.png old mode 100755 new mode 100644 index a59f51015c1..efd49ca0163 Binary files a/htdocs/theme/amarok/img/object_propal.png and b/htdocs/theme/amarok/img/object_propal.png differ diff --git a/htdocs/theme/amarok/img/object_reduc.png b/htdocs/theme/amarok/img/object_reduc.png old mode 100755 new mode 100644 index 6a05d3a8e2a..221eaf83e86 Binary files a/htdocs/theme/amarok/img/object_reduc.png and b/htdocs/theme/amarok/img/object_reduc.png differ diff --git a/htdocs/theme/amarok/img/object_rss.png b/htdocs/theme/amarok/img/object_rss.png old mode 100755 new mode 100644 index 0210d989666..9ba662a6086 Binary files a/htdocs/theme/amarok/img/object_rss.png and b/htdocs/theme/amarok/img/object_rss.png differ diff --git a/htdocs/theme/amarok/img/object_sending.png b/htdocs/theme/amarok/img/object_sending.png old mode 100755 new mode 100644 index 544e194bbd7..5ef8072d54e Binary files a/htdocs/theme/amarok/img/object_sending.png and b/htdocs/theme/amarok/img/object_sending.png differ diff --git a/htdocs/theme/amarok/img/object_service.png b/htdocs/theme/amarok/img/object_service.png old mode 100755 new mode 100644 index ea5b0e73a5e..290a65f8a46 Binary files a/htdocs/theme/amarok/img/object_service.png and b/htdocs/theme/amarok/img/object_service.png differ diff --git a/htdocs/theme/amarok/img/object_skype.png b/htdocs/theme/amarok/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/amarok/img/object_skype.png and b/htdocs/theme/amarok/img/object_skype.png differ diff --git a/htdocs/theme/amarok/img/object_stock.png b/htdocs/theme/amarok/img/object_stock.png old mode 100755 new mode 100644 index 9ea65b9b6e1..19ae2cdc0d3 Binary files a/htdocs/theme/amarok/img/object_stock.png and b/htdocs/theme/amarok/img/object_stock.png differ diff --git a/htdocs/theme/amarok/img/object_task.png b/htdocs/theme/amarok/img/object_task.png old mode 100755 new mode 100644 index 0023b3a75bd..2dc8d0111b6 Binary files a/htdocs/theme/amarok/img/object_task.png and b/htdocs/theme/amarok/img/object_task.png differ diff --git a/htdocs/theme/amarok/img/object_technic.png b/htdocs/theme/amarok/img/object_technic.png old mode 100755 new mode 100644 index eae2c746d92..0f1737ce582 Binary files a/htdocs/theme/amarok/img/object_technic.png and b/htdocs/theme/amarok/img/object_technic.png differ diff --git a/htdocs/theme/amarok/img/object_trip.png b/htdocs/theme/amarok/img/object_trip.png old mode 100755 new mode 100644 index d9ea9de8160..4ffacc73e86 Binary files a/htdocs/theme/amarok/img/object_trip.png and b/htdocs/theme/amarok/img/object_trip.png differ diff --git a/htdocs/theme/amarok/img/object_user.png b/htdocs/theme/amarok/img/object_user.png old mode 100755 new mode 100644 index d0ab1ec1dad..55ee040f98d Binary files a/htdocs/theme/amarok/img/object_user.png and b/htdocs/theme/amarok/img/object_user.png differ diff --git a/htdocs/theme/amarok/img/off.png b/htdocs/theme/amarok/img/off.png old mode 100755 new mode 100644 index 1b4d2072939..ab7742b4a97 Binary files a/htdocs/theme/amarok/img/off.png and b/htdocs/theme/amarok/img/off.png differ diff --git a/htdocs/theme/amarok/img/ok.png b/htdocs/theme/amarok/img/ok.png old mode 100755 new mode 100644 index 210b1a6c3cc..abe1bd2424e Binary files a/htdocs/theme/amarok/img/ok.png and b/htdocs/theme/amarok/img/ok.png differ diff --git a/htdocs/theme/amarok/img/on.png b/htdocs/theme/amarok/img/on.png old mode 100755 new mode 100644 index 2112071d494..9362cfb75ee Binary files a/htdocs/theme/amarok/img/on.png and b/htdocs/theme/amarok/img/on.png differ diff --git a/htdocs/theme/amarok/img/pdf2.png b/htdocs/theme/amarok/img/pdf2.png old mode 100755 new mode 100644 index 6bf44387a88..cbf205d383e Binary files a/htdocs/theme/amarok/img/pdf2.png and b/htdocs/theme/amarok/img/pdf2.png differ diff --git a/htdocs/theme/amarok/img/pdf3.png b/htdocs/theme/amarok/img/pdf3.png old mode 100755 new mode 100644 index 2dc7f897514..fec72dbd81e Binary files a/htdocs/theme/amarok/img/pdf3.png and b/htdocs/theme/amarok/img/pdf3.png differ diff --git a/htdocs/theme/amarok/img/play.png b/htdocs/theme/amarok/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/amarok/img/play.png and b/htdocs/theme/amarok/img/play.png differ diff --git a/htdocs/theme/amarok/img/previous.png b/htdocs/theme/amarok/img/previous.png old mode 100755 new mode 100644 index 18d4532f8ed..f50a54114ec Binary files a/htdocs/theme/amarok/img/previous.png and b/htdocs/theme/amarok/img/previous.png differ diff --git a/htdocs/theme/amarok/img/printer.png b/htdocs/theme/amarok/img/printer.png old mode 100755 new mode 100644 index ba2af6b0885..c2e20742b65 Binary files a/htdocs/theme/amarok/img/printer.png and b/htdocs/theme/amarok/img/printer.png differ diff --git a/htdocs/theme/amarok/img/puce.png b/htdocs/theme/amarok/img/puce.png old mode 100755 new mode 100644 index 4f23a349f17..d18f94cf582 Binary files a/htdocs/theme/amarok/img/puce.png and b/htdocs/theme/amarok/img/puce.png differ diff --git a/htdocs/theme/amarok/img/recent.png b/htdocs/theme/amarok/img/recent.png old mode 100755 new mode 100644 index fb87a873294..c5818910e6e Binary files a/htdocs/theme/amarok/img/recent.png and b/htdocs/theme/amarok/img/recent.png differ diff --git a/htdocs/theme/amarok/img/redstar.png b/htdocs/theme/amarok/img/redstar.png old mode 100755 new mode 100644 index 32a7574d834..5c02de23c6b Binary files a/htdocs/theme/amarok/img/redstar.png and b/htdocs/theme/amarok/img/redstar.png differ diff --git a/htdocs/theme/amarok/img/refresh.png b/htdocs/theme/amarok/img/refresh.png old mode 100755 new mode 100644 index 757b8d50fdb..e96e4bbf33c Binary files a/htdocs/theme/amarok/img/refresh.png and b/htdocs/theme/amarok/img/refresh.png differ diff --git a/htdocs/theme/amarok/img/reload.png b/htdocs/theme/amarok/img/reload.png old mode 100755 new mode 100644 index 8baf084bd99..72990aa88cf Binary files a/htdocs/theme/amarok/img/reload.png and b/htdocs/theme/amarok/img/reload.png differ diff --git a/htdocs/theme/amarok/img/rightarrow.png b/htdocs/theme/amarok/img/rightarrow.png old mode 100755 new mode 100644 index b0e7def02d9..91e19e47a81 Binary files a/htdocs/theme/amarok/img/rightarrow.png and b/htdocs/theme/amarok/img/rightarrow.png differ diff --git a/htdocs/theme/amarok/img/search.png b/htdocs/theme/amarok/img/search.png old mode 100755 new mode 100644 index ff08a7492d4..8e95c05c874 Binary files a/htdocs/theme/amarok/img/search.png and b/htdocs/theme/amarok/img/search.png differ diff --git a/htdocs/theme/amarok/img/searchclear.png b/htdocs/theme/amarok/img/searchclear.png old mode 100755 new mode 100644 index f80737aaa78..feff9b53fe4 Binary files a/htdocs/theme/amarok/img/searchclear.png and b/htdocs/theme/amarok/img/searchclear.png differ diff --git a/htdocs/theme/amarok/img/setup.png b/htdocs/theme/amarok/img/setup.png old mode 100755 new mode 100644 index 1444d86ce2a..ca5f28b1d17 Binary files a/htdocs/theme/amarok/img/setup.png and b/htdocs/theme/amarok/img/setup.png differ diff --git a/htdocs/theme/amarok/img/sort_asc.png b/htdocs/theme/amarok/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/amarok/img/sort_asc.png and b/htdocs/theme/amarok/img/sort_asc.png differ diff --git a/htdocs/theme/amarok/img/sort_asc_disabled.png b/htdocs/theme/amarok/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/amarok/img/sort_asc_disabled.png and b/htdocs/theme/amarok/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/amarok/img/sort_desc.png b/htdocs/theme/amarok/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/amarok/img/sort_desc.png and b/htdocs/theme/amarok/img/sort_desc.png differ diff --git a/htdocs/theme/amarok/img/sort_desc_disabled.png b/htdocs/theme/amarok/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/amarok/img/sort_desc_disabled.png and b/htdocs/theme/amarok/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/amarok/img/split.png b/htdocs/theme/amarok/img/split.png old mode 100755 new mode 100644 index 27d5ff87c9d..62034af3190 Binary files a/htdocs/theme/amarok/img/split.png and b/htdocs/theme/amarok/img/split.png differ diff --git a/htdocs/theme/amarok/img/star.png b/htdocs/theme/amarok/img/star.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/amarok/img/stats.png b/htdocs/theme/amarok/img/stats.png old mode 100755 new mode 100644 index 8f00204a33c..a503b20a95c Binary files a/htdocs/theme/amarok/img/stats.png and b/htdocs/theme/amarok/img/stats.png differ diff --git a/htdocs/theme/amarok/img/statut0.png b/htdocs/theme/amarok/img/statut0.png old mode 100755 new mode 100644 index 725c20a19c3..ceb9667d4b7 Binary files a/htdocs/theme/amarok/img/statut0.png and b/htdocs/theme/amarok/img/statut0.png differ diff --git a/htdocs/theme/amarok/img/statut1.png b/htdocs/theme/amarok/img/statut1.png old mode 100755 new mode 100644 index 663cfb93856..2f96ef7581d Binary files a/htdocs/theme/amarok/img/statut1.png and b/htdocs/theme/amarok/img/statut1.png differ diff --git a/htdocs/theme/amarok/img/statut2.png b/htdocs/theme/amarok/img/statut2.png old mode 100755 new mode 100644 index ff7be2c5808..155df5aa188 Binary files a/htdocs/theme/amarok/img/statut2.png and b/htdocs/theme/amarok/img/statut2.png differ diff --git a/htdocs/theme/amarok/img/statut3.png b/htdocs/theme/amarok/img/statut3.png old mode 100755 new mode 100644 index e59f0eb85d3..18b2a5b47dd Binary files a/htdocs/theme/amarok/img/statut3.png and b/htdocs/theme/amarok/img/statut3.png differ diff --git a/htdocs/theme/amarok/img/statut4.png b/htdocs/theme/amarok/img/statut4.png old mode 100755 new mode 100644 index 674773045e5..92450a62497 Binary files a/htdocs/theme/amarok/img/statut4.png and b/htdocs/theme/amarok/img/statut4.png differ diff --git a/htdocs/theme/amarok/img/statut5.png b/htdocs/theme/amarok/img/statut5.png old mode 100755 new mode 100644 index 22dba223a17..a8db4159a31 Binary files a/htdocs/theme/amarok/img/statut5.png and b/htdocs/theme/amarok/img/statut5.png differ diff --git a/htdocs/theme/amarok/img/statut6.png b/htdocs/theme/amarok/img/statut6.png old mode 100755 new mode 100644 index ff7be2c5808..155df5aa188 Binary files a/htdocs/theme/amarok/img/statut6.png and b/htdocs/theme/amarok/img/statut6.png differ diff --git a/htdocs/theme/amarok/img/statut7.png b/htdocs/theme/amarok/img/statut7.png old mode 100755 new mode 100644 index f18782947cb..cb71c05dcfc Binary files a/htdocs/theme/amarok/img/statut7.png and b/htdocs/theme/amarok/img/statut7.png differ diff --git a/htdocs/theme/amarok/img/statut8.png b/htdocs/theme/amarok/img/statut8.png old mode 100755 new mode 100644 index 5c008b0a6fa..bbe351f0942 Binary files a/htdocs/theme/amarok/img/statut8.png and b/htdocs/theme/amarok/img/statut8.png differ diff --git a/htdocs/theme/amarok/img/statut9.png b/htdocs/theme/amarok/img/statut9.png old mode 100755 new mode 100644 index 662d5e599ee..14287ee9bb4 Binary files a/htdocs/theme/amarok/img/statut9.png and b/htdocs/theme/amarok/img/statut9.png differ diff --git a/htdocs/theme/amarok/img/stcomm-1.png b/htdocs/theme/amarok/img/stcomm-1.png old mode 100755 new mode 100644 index e8ff761f0b5..8b77cfcae4a Binary files a/htdocs/theme/amarok/img/stcomm-1.png and b/htdocs/theme/amarok/img/stcomm-1.png differ diff --git a/htdocs/theme/amarok/img/stcomm-1_grayed.png b/htdocs/theme/amarok/img/stcomm-1_grayed.png old mode 100755 new mode 100644 index 8a7282ebe26..2b53ad3a2d5 Binary files a/htdocs/theme/amarok/img/stcomm-1_grayed.png and b/htdocs/theme/amarok/img/stcomm-1_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm0.png b/htdocs/theme/amarok/img/stcomm0.png old mode 100755 new mode 100644 index 085226668a3..f0b8c3f7165 Binary files a/htdocs/theme/amarok/img/stcomm0.png and b/htdocs/theme/amarok/img/stcomm0.png differ diff --git a/htdocs/theme/amarok/img/stcomm0_grayed.png b/htdocs/theme/amarok/img/stcomm0_grayed.png old mode 100755 new mode 100644 index df3447e8431..a72e9900534 Binary files a/htdocs/theme/amarok/img/stcomm0_grayed.png and b/htdocs/theme/amarok/img/stcomm0_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm1.png b/htdocs/theme/amarok/img/stcomm1.png old mode 100755 new mode 100644 index 613ebe96677..6d1b485f1a5 Binary files a/htdocs/theme/amarok/img/stcomm1.png and b/htdocs/theme/amarok/img/stcomm1.png differ diff --git a/htdocs/theme/amarok/img/stcomm1_grayed.png b/htdocs/theme/amarok/img/stcomm1_grayed.png old mode 100755 new mode 100644 index f2c7fe56a38..7cc52f5ee6b Binary files a/htdocs/theme/amarok/img/stcomm1_grayed.png and b/htdocs/theme/amarok/img/stcomm1_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm2.png b/htdocs/theme/amarok/img/stcomm2.png old mode 100755 new mode 100644 index 20801a12d18..efc1796e410 Binary files a/htdocs/theme/amarok/img/stcomm2.png and b/htdocs/theme/amarok/img/stcomm2.png differ diff --git a/htdocs/theme/amarok/img/stcomm2_grayed.png b/htdocs/theme/amarok/img/stcomm2_grayed.png old mode 100755 new mode 100644 index 8316f7be432..f8da01cbc45 Binary files a/htdocs/theme/amarok/img/stcomm2_grayed.png and b/htdocs/theme/amarok/img/stcomm2_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm3.png b/htdocs/theme/amarok/img/stcomm3.png old mode 100755 new mode 100644 index ea0a02f1dfe..18c8a6e323f Binary files a/htdocs/theme/amarok/img/stcomm3.png and b/htdocs/theme/amarok/img/stcomm3.png differ diff --git a/htdocs/theme/amarok/img/stcomm3_grayed.png b/htdocs/theme/amarok/img/stcomm3_grayed.png old mode 100755 new mode 100644 index ac15741111a..da65ebc51a2 Binary files a/htdocs/theme/amarok/img/stcomm3_grayed.png and b/htdocs/theme/amarok/img/stcomm3_grayed.png differ diff --git a/htdocs/theme/amarok/img/stcomm4.png b/htdocs/theme/amarok/img/stcomm4.png old mode 100755 new mode 100644 index dfe8db877d5..8f4a34e9ab2 Binary files a/htdocs/theme/amarok/img/stcomm4.png and b/htdocs/theme/amarok/img/stcomm4.png differ diff --git a/htdocs/theme/amarok/img/stcomm4_grayed.png b/htdocs/theme/amarok/img/stcomm4_grayed.png old mode 100755 new mode 100644 index 88e6727ac2c..62177f13df6 Binary files a/htdocs/theme/amarok/img/stcomm4_grayed.png and b/htdocs/theme/amarok/img/stcomm4_grayed.png differ diff --git a/htdocs/theme/amarok/img/tick.png b/htdocs/theme/amarok/img/tick.png old mode 100755 new mode 100644 index 38d76144fa7..c2279280b33 Binary files a/htdocs/theme/amarok/img/tick.png and b/htdocs/theme/amarok/img/tick.png differ diff --git a/htdocs/theme/amarok/img/title.png b/htdocs/theme/amarok/img/title.png old mode 100755 new mode 100644 index c3f59dcb6ae..4087ba572a5 Binary files a/htdocs/theme/amarok/img/title.png and b/htdocs/theme/amarok/img/title.png differ diff --git a/htdocs/theme/amarok/img/unlock.png b/htdocs/theme/amarok/img/unlock.png old mode 100755 new mode 100644 index 0ab8c4947e6..738c8393ede Binary files a/htdocs/theme/amarok/img/unlock.png and b/htdocs/theme/amarok/img/unlock.png differ diff --git a/htdocs/theme/amarok/img/uparrow.png b/htdocs/theme/amarok/img/uparrow.png old mode 100755 new mode 100644 index 7858bd0c45e..1f6f801f045 Binary files a/htdocs/theme/amarok/img/uparrow.png and b/htdocs/theme/amarok/img/uparrow.png differ diff --git a/htdocs/theme/amarok/img/vcard.png b/htdocs/theme/amarok/img/vcard.png old mode 100755 new mode 100644 index fc06e4c8fd8..74140d7026d Binary files a/htdocs/theme/amarok/img/vcard.png and b/htdocs/theme/amarok/img/vcard.png differ diff --git a/htdocs/theme/amarok/img/view.png b/htdocs/theme/amarok/img/view.png old mode 100755 new mode 100644 index 6a05d3a8e2a..221eaf83e86 Binary files a/htdocs/theme/amarok/img/view.png and b/htdocs/theme/amarok/img/view.png differ diff --git a/htdocs/theme/amarok/img/vmenu.png b/htdocs/theme/amarok/img/vmenu.png old mode 100755 new mode 100644 index 74d696bf6b2..06f1f0d6100 Binary files a/htdocs/theme/amarok/img/vmenu.png and b/htdocs/theme/amarok/img/vmenu.png differ diff --git a/htdocs/theme/amarok/img/warning.png b/htdocs/theme/amarok/img/warning.png old mode 100755 new mode 100644 index ae8e35e781d..f1b93b8cc82 Binary files a/htdocs/theme/amarok/img/warning.png and b/htdocs/theme/amarok/img/warning.png differ diff --git a/htdocs/theme/amarok/thumb.png b/htdocs/theme/amarok/thumb.png old mode 100755 new mode 100644 index 9bba79fedc5..96509b93046 Binary files a/htdocs/theme/amarok/thumb.png and b/htdocs/theme/amarok/thumb.png differ diff --git a/htdocs/theme/auguria/img/1downarrow.png b/htdocs/theme/auguria/img/1downarrow.png index 64b6199c774..8459a7fcf85 100644 Binary files a/htdocs/theme/auguria/img/1downarrow.png and b/htdocs/theme/auguria/img/1downarrow.png differ diff --git a/htdocs/theme/auguria/img/1downarrow_selected.png b/htdocs/theme/auguria/img/1downarrow_selected.png index 97249e7ab0a..c5a947c4d9f 100644 Binary files a/htdocs/theme/auguria/img/1downarrow_selected.png and b/htdocs/theme/auguria/img/1downarrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1leftarrow.png b/htdocs/theme/auguria/img/1leftarrow.png index 150fc5e88bb..25665e556a9 100644 Binary files a/htdocs/theme/auguria/img/1leftarrow.png and b/htdocs/theme/auguria/img/1leftarrow.png differ diff --git a/htdocs/theme/auguria/img/1leftarrow_selected.png b/htdocs/theme/auguria/img/1leftarrow_selected.png index 320731ddd3f..9a88ada13f1 100644 Binary files a/htdocs/theme/auguria/img/1leftarrow_selected.png and b/htdocs/theme/auguria/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1rightarrow.png b/htdocs/theme/auguria/img/1rightarrow.png index a98d145d2a5..422fc3f9426 100644 Binary files a/htdocs/theme/auguria/img/1rightarrow.png and b/htdocs/theme/auguria/img/1rightarrow.png differ diff --git a/htdocs/theme/auguria/img/1rightarrow_selected.png b/htdocs/theme/auguria/img/1rightarrow_selected.png index 79ea84d9f72..422fc3f9426 100644 Binary files a/htdocs/theme/auguria/img/1rightarrow_selected.png and b/htdocs/theme/auguria/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1uparrow.png b/htdocs/theme/auguria/img/1uparrow.png index e67a663df4d..9cd9d0b4a28 100644 Binary files a/htdocs/theme/auguria/img/1uparrow.png and b/htdocs/theme/auguria/img/1uparrow.png differ diff --git a/htdocs/theme/auguria/img/1uparrow_selected.png b/htdocs/theme/auguria/img/1uparrow_selected.png index 590d05521a5..db109a4c2b5 100644 Binary files a/htdocs/theme/auguria/img/1uparrow_selected.png and b/htdocs/theme/auguria/img/1uparrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1updownarrow.png b/htdocs/theme/auguria/img/1updownarrow.png index fd5e5801aea..871ac1c1f29 100644 Binary files a/htdocs/theme/auguria/img/1updownarrow.png and b/htdocs/theme/auguria/img/1updownarrow.png differ diff --git a/htdocs/theme/auguria/img/addfile.png b/htdocs/theme/auguria/img/addfile.png index 3bfa627d758..1cb7af0ad8a 100644 Binary files a/htdocs/theme/auguria/img/addfile.png and b/htdocs/theme/auguria/img/addfile.png differ diff --git a/htdocs/theme/auguria/img/banner_02.jpg b/htdocs/theme/auguria/img/banner_02.jpg index 29e0619e77f..81635fd2a59 100644 Binary files a/htdocs/theme/auguria/img/banner_02.jpg and b/htdocs/theme/auguria/img/banner_02.jpg differ diff --git a/htdocs/theme/auguria/img/bg-rubrique.png b/htdocs/theme/auguria/img/bg-rubrique.png index 6bc08feb211..9abf1dc1459 100644 Binary files a/htdocs/theme/auguria/img/bg-rubrique.png and b/htdocs/theme/auguria/img/bg-rubrique.png differ diff --git a/htdocs/theme/auguria/img/bg-titre-rubrique.png b/htdocs/theme/auguria/img/bg-titre-rubrique.png index feca840034b..a68206aa818 100644 Binary files a/htdocs/theme/auguria/img/bg-titre-rubrique.png and b/htdocs/theme/auguria/img/bg-titre-rubrique.png differ diff --git a/htdocs/theme/auguria/img/body_bg.jpg b/htdocs/theme/auguria/img/body_bg.jpg index ddde2c5f5aa..0480bfdc738 100644 Binary files a/htdocs/theme/auguria/img/body_bg.jpg and b/htdocs/theme/auguria/img/body_bg.jpg differ diff --git a/htdocs/theme/auguria/img/button_edit.png b/htdocs/theme/auguria/img/button_edit.png index ce8b226710b..894b4cfd78e 100644 Binary files a/htdocs/theme/auguria/img/button_edit.png and b/htdocs/theme/auguria/img/button_edit.png differ diff --git a/htdocs/theme/auguria/img/calc.png b/htdocs/theme/auguria/img/calc.png index d3bd2bbc824..5e6471408d8 100644 Binary files a/htdocs/theme/auguria/img/calc.png and b/htdocs/theme/auguria/img/calc.png differ diff --git a/htdocs/theme/auguria/img/calendar.png b/htdocs/theme/auguria/img/calendar.png index 90829a353c3..bbe6c27f041 100644 Binary files a/htdocs/theme/auguria/img/calendar.png and b/htdocs/theme/auguria/img/calendar.png differ diff --git a/htdocs/theme/auguria/img/call.png b/htdocs/theme/auguria/img/call.png index 8315c57d61d..ddfc1b7bd90 100644 Binary files a/htdocs/theme/auguria/img/call.png and b/htdocs/theme/auguria/img/call.png differ diff --git a/htdocs/theme/auguria/img/call_out.png b/htdocs/theme/auguria/img/call_out.png index bf972d8b1ae..b5a22eb827b 100644 Binary files a/htdocs/theme/auguria/img/call_out.png and b/htdocs/theme/auguria/img/call_out.png differ diff --git a/htdocs/theme/auguria/img/close.png b/htdocs/theme/auguria/img/close.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/auguria/img/close.png and b/htdocs/theme/auguria/img/close.png differ diff --git a/htdocs/theme/auguria/img/close_title.png b/htdocs/theme/auguria/img/close_title.png index 24eda772954..bebb74d9861 100644 Binary files a/htdocs/theme/auguria/img/close_title.png and b/htdocs/theme/auguria/img/close_title.png differ diff --git a/htdocs/theme/auguria/img/delete.png b/htdocs/theme/auguria/img/delete.png index 221cd3c76b9..8ad73597be7 100644 Binary files a/htdocs/theme/auguria/img/delete.png and b/htdocs/theme/auguria/img/delete.png differ diff --git a/htdocs/theme/auguria/img/detail.png b/htdocs/theme/auguria/img/detail.png index 2d31ec2202e..05562bef842 100644 Binary files a/htdocs/theme/auguria/img/detail.png and b/htdocs/theme/auguria/img/detail.png differ diff --git a/htdocs/theme/auguria/img/disable.png b/htdocs/theme/auguria/img/disable.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/auguria/img/disable.png and b/htdocs/theme/auguria/img/disable.png differ diff --git a/htdocs/theme/auguria/img/edit.png b/htdocs/theme/auguria/img/edit.png index d5ef04577cc..4e916fe1fb0 100644 Binary files a/htdocs/theme/auguria/img/edit.png and b/htdocs/theme/auguria/img/edit.png differ diff --git a/htdocs/theme/auguria/img/edit_add.png b/htdocs/theme/auguria/img/edit_add.png old mode 100755 new mode 100644 index f6e67164208..ae205e9d770 Binary files a/htdocs/theme/auguria/img/edit_add.png and b/htdocs/theme/auguria/img/edit_add.png differ diff --git a/htdocs/theme/auguria/img/edit_remove.png b/htdocs/theme/auguria/img/edit_remove.png old mode 100755 new mode 100644 index 0c7ca54fa1f..bc4bdb360fa Binary files a/htdocs/theme/auguria/img/edit_remove.png and b/htdocs/theme/auguria/img/edit_remove.png differ diff --git a/htdocs/theme/auguria/img/editdelete.png b/htdocs/theme/auguria/img/editdelete.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/auguria/img/editdelete.png and b/htdocs/theme/auguria/img/editdelete.png differ diff --git a/htdocs/theme/auguria/img/file.png b/htdocs/theme/auguria/img/file.png index 98bc98d2f1f..73c66e9b2b3 100644 Binary files a/htdocs/theme/auguria/img/file.png and b/htdocs/theme/auguria/img/file.png differ diff --git a/htdocs/theme/auguria/img/filenew.png b/htdocs/theme/auguria/img/filenew.png index 1f6581389d1..8680cce82bf 100644 Binary files a/htdocs/theme/auguria/img/filenew.png and b/htdocs/theme/auguria/img/filenew.png differ diff --git a/htdocs/theme/auguria/img/filter.png b/htdocs/theme/auguria/img/filter.png index 4baa3a3be8e..917715107bd 100644 Binary files a/htdocs/theme/auguria/img/filter.png and b/htdocs/theme/auguria/img/filter.png differ diff --git a/htdocs/theme/auguria/img/folder-open.png b/htdocs/theme/auguria/img/folder-open.png index 1687cd1b536..1db8369b3d5 100644 Binary files a/htdocs/theme/auguria/img/folder-open.png and b/htdocs/theme/auguria/img/folder-open.png differ diff --git a/htdocs/theme/auguria/img/folder.png b/htdocs/theme/auguria/img/folder.png index 908a6df9348..04a24af2e22 100644 Binary files a/htdocs/theme/auguria/img/folder.png and b/htdocs/theme/auguria/img/folder.png differ diff --git a/htdocs/theme/auguria/img/grip.png b/htdocs/theme/auguria/img/grip.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/auguria/img/grip.png and b/htdocs/theme/auguria/img/grip.png differ diff --git a/htdocs/theme/auguria/img/grip_title.png b/htdocs/theme/auguria/img/grip_title.png index 9b3c093c790..d6ecce335cb 100644 Binary files a/htdocs/theme/auguria/img/grip_title.png and b/htdocs/theme/auguria/img/grip_title.png differ diff --git a/htdocs/theme/auguria/img/headbg.jpg b/htdocs/theme/auguria/img/headbg.jpg index 7d1374e1fc9..160821354cc 100644 Binary files a/htdocs/theme/auguria/img/headbg.jpg and b/htdocs/theme/auguria/img/headbg.jpg differ diff --git a/htdocs/theme/auguria/img/headbg2.jpg b/htdocs/theme/auguria/img/headbg2.jpg index 7917abd9c07..0bc44f0ea99 100644 Binary files a/htdocs/theme/auguria/img/headbg2.jpg and b/htdocs/theme/auguria/img/headbg2.jpg differ diff --git a/htdocs/theme/auguria/img/help.png b/htdocs/theme/auguria/img/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/auguria/img/help.png and b/htdocs/theme/auguria/img/help.png differ diff --git a/htdocs/theme/auguria/img/high.png b/htdocs/theme/auguria/img/high.png index f893de7abf3..c0eaee6542f 100644 Binary files a/htdocs/theme/auguria/img/high.png and b/htdocs/theme/auguria/img/high.png differ diff --git a/htdocs/theme/auguria/img/history.png b/htdocs/theme/auguria/img/history.png index 932921c1f4c..0fa4283476b 100644 Binary files a/htdocs/theme/auguria/img/history.png and b/htdocs/theme/auguria/img/history.png differ diff --git a/htdocs/theme/auguria/img/indent1.png b/htdocs/theme/auguria/img/indent1.png index 52ebb2bd738..09695ac754f 100644 Binary files a/htdocs/theme/auguria/img/indent1.png and b/htdocs/theme/auguria/img/indent1.png differ diff --git a/htdocs/theme/auguria/img/info.png b/htdocs/theme/auguria/img/info.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/auguria/img/info.png and b/htdocs/theme/auguria/img/info.png differ diff --git a/htdocs/theme/auguria/img/lock.png b/htdocs/theme/auguria/img/lock.png index 8c2e2cbdb09..3d99cf1eaef 100644 Binary files a/htdocs/theme/auguria/img/lock.png and b/htdocs/theme/auguria/img/lock.png differ diff --git a/htdocs/theme/auguria/img/login_background.png b/htdocs/theme/auguria/img/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/auguria/img/login_background.png and b/htdocs/theme/auguria/img/login_background.png differ diff --git a/htdocs/theme/auguria/img/menus/agenda.png b/htdocs/theme/auguria/img/menus/agenda.png index 2bea3152a10..866037c9b54 100644 Binary files a/htdocs/theme/auguria/img/menus/agenda.png and b/htdocs/theme/auguria/img/menus/agenda.png differ diff --git a/htdocs/theme/auguria/img/menus/commercial.png b/htdocs/theme/auguria/img/menus/commercial.png index e520f7eb71e..efc1b3f0608 100644 Binary files a/htdocs/theme/auguria/img/menus/commercial.png and b/htdocs/theme/auguria/img/menus/commercial.png differ diff --git a/htdocs/theme/auguria/img/menus/footer_bg.jpg b/htdocs/theme/auguria/img/menus/footer_bg.jpg index ab5511b57f1..7319c16f9af 100644 Binary files a/htdocs/theme/auguria/img/menus/footer_bg.jpg and b/htdocs/theme/auguria/img/menus/footer_bg.jpg differ diff --git a/htdocs/theme/auguria/img/menus/generic3.png b/htdocs/theme/auguria/img/menus/generic3.png index d3ed4fa89b3..e22f73aa6f9 100644 Binary files a/htdocs/theme/auguria/img/menus/generic3.png and b/htdocs/theme/auguria/img/menus/generic3.png differ diff --git a/htdocs/theme/auguria/img/menus/home.png b/htdocs/theme/auguria/img/menus/home.png index eec3240070b..f4d0d917d1f 100644 Binary files a/htdocs/theme/auguria/img/menus/home.png and b/htdocs/theme/auguria/img/menus/home.png differ diff --git a/htdocs/theme/auguria/img/menus/mail.png b/htdocs/theme/auguria/img/menus/mail.png index dab5feda5cd..d715ec7810c 100644 Binary files a/htdocs/theme/auguria/img/menus/mail.png and b/htdocs/theme/auguria/img/menus/mail.png differ diff --git a/htdocs/theme/auguria/img/menus/products.png b/htdocs/theme/auguria/img/menus/products.png index d1081185c44..6f5f45269ee 100644 Binary files a/htdocs/theme/auguria/img/menus/products.png and b/htdocs/theme/auguria/img/menus/products.png differ diff --git a/htdocs/theme/auguria/img/menus/project.png b/htdocs/theme/auguria/img/menus/project.png index 5bc0f86b4be..882235d2cd3 100644 Binary files a/htdocs/theme/auguria/img/menus/project.png and b/htdocs/theme/auguria/img/menus/project.png differ diff --git a/htdocs/theme/auguria/img/menus/shop.png b/htdocs/theme/auguria/img/menus/shop.png index 89627d8b332..efd6859ab60 100644 Binary files a/htdocs/theme/auguria/img/menus/shop.png and b/htdocs/theme/auguria/img/menus/shop.png differ diff --git a/htdocs/theme/auguria/img/menus/tab_background.png b/htdocs/theme/auguria/img/menus/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/auguria/img/menus/tab_background.png and b/htdocs/theme/auguria/img/menus/tab_background.png differ diff --git a/htdocs/theme/auguria/img/menus/tools.png b/htdocs/theme/auguria/img/menus/tools.png index 17215ec5899..c053f660ebf 100644 Binary files a/htdocs/theme/auguria/img/menus/tools.png and b/htdocs/theme/auguria/img/menus/tools.png differ diff --git a/htdocs/theme/auguria/img/menus/topmenu_bg.png b/htdocs/theme/auguria/img/menus/topmenu_bg.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/menus/topmenu_right.png b/htdocs/theme/auguria/img/menus/topmenu_right.png old mode 100755 new mode 100644 index d6fd3c41168..cd14ff61bbc Binary files a/htdocs/theme/auguria/img/menus/topmenu_right.png and b/htdocs/theme/auguria/img/menus/topmenu_right.png differ diff --git a/htdocs/theme/auguria/img/menus/trtitle.png b/htdocs/theme/auguria/img/menus/trtitle.png index e4fe4ffe1a6..29b694864e5 100644 Binary files a/htdocs/theme/auguria/img/menus/trtitle.png and b/htdocs/theme/auguria/img/menus/trtitle.png differ diff --git a/htdocs/theme/auguria/img/object_action.png b/htdocs/theme/auguria/img/object_action.png index dd356305161..001b0cf9b76 100644 Binary files a/htdocs/theme/auguria/img/object_action.png and b/htdocs/theme/auguria/img/object_action.png differ diff --git a/htdocs/theme/auguria/img/object_action_rdv.png b/htdocs/theme/auguria/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/auguria/img/object_action_rdv.png and b/htdocs/theme/auguria/img/object_action_rdv.png differ diff --git a/htdocs/theme/auguria/img/object_address.png b/htdocs/theme/auguria/img/object_address.png index b20734da69a..a4b878966dc 100644 Binary files a/htdocs/theme/auguria/img/object_address.png and b/htdocs/theme/auguria/img/object_address.png differ diff --git a/htdocs/theme/auguria/img/object_barcode.png b/htdocs/theme/auguria/img/object_barcode.png index 83d3e1ae993..6f1931ab96c 100644 Binary files a/htdocs/theme/auguria/img/object_barcode.png and b/htdocs/theme/auguria/img/object_barcode.png differ diff --git a/htdocs/theme/auguria/img/object_bill.png b/htdocs/theme/auguria/img/object_bill.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_billd.png b/htdocs/theme/auguria/img/object_billd.png index 3c7443cba3e..2080958f0fb 100644 Binary files a/htdocs/theme/auguria/img/object_billd.png and b/htdocs/theme/auguria/img/object_billd.png differ diff --git a/htdocs/theme/auguria/img/object_billr.png b/htdocs/theme/auguria/img/object_billr.png index c89098beaa5..7a9692a0804 100644 Binary files a/htdocs/theme/auguria/img/object_billr.png and b/htdocs/theme/auguria/img/object_billr.png differ diff --git a/htdocs/theme/auguria/img/object_book.png b/htdocs/theme/auguria/img/object_book.png old mode 100755 new mode 100644 index 67f6b06467d..85097420728 Binary files a/htdocs/theme/auguria/img/object_book.png and b/htdocs/theme/auguria/img/object_book.png differ diff --git a/htdocs/theme/auguria/img/object_bookmark.png b/htdocs/theme/auguria/img/object_bookmark.png index 76aba6c2a7d..86d1a0dfa52 100644 Binary files a/htdocs/theme/auguria/img/object_bookmark.png and b/htdocs/theme/auguria/img/object_bookmark.png differ diff --git a/htdocs/theme/auguria/img/object_calendarday.png b/htdocs/theme/auguria/img/object_calendarday.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_calendarweek.png b/htdocs/theme/auguria/img/object_calendarweek.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_commercial.png b/htdocs/theme/auguria/img/object_commercial.png index 5f11e40a81f..36cdcc8d4a2 100644 Binary files a/htdocs/theme/auguria/img/object_commercial.png and b/htdocs/theme/auguria/img/object_commercial.png differ diff --git a/htdocs/theme/auguria/img/object_company.png b/htdocs/theme/auguria/img/object_company.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_contact.png b/htdocs/theme/auguria/img/object_contact.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_contact_all.png b/htdocs/theme/auguria/img/object_contact_all.png index 966f6e05cfa..f571504b246 100644 Binary files a/htdocs/theme/auguria/img/object_contact_all.png and b/htdocs/theme/auguria/img/object_contact_all.png differ diff --git a/htdocs/theme/auguria/img/object_contract.png b/htdocs/theme/auguria/img/object_contract.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_cron.png b/htdocs/theme/auguria/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/auguria/img/object_cron.png and b/htdocs/theme/auguria/img/object_cron.png differ diff --git a/htdocs/theme/auguria/img/object_email.png b/htdocs/theme/auguria/img/object_email.png index 9246f5cef24..d5cd141733d 100644 Binary files a/htdocs/theme/auguria/img/object_email.png and b/htdocs/theme/auguria/img/object_email.png differ diff --git a/htdocs/theme/auguria/img/object_generic.png b/htdocs/theme/auguria/img/object_generic.png index 4d5f811a891..ccfd2d2f5b2 100644 Binary files a/htdocs/theme/auguria/img/object_generic.png and b/htdocs/theme/auguria/img/object_generic.png differ diff --git a/htdocs/theme/auguria/img/object_globe.png b/htdocs/theme/auguria/img/object_globe.png index f726f8a705e..aae8bf6eba0 100644 Binary files a/htdocs/theme/auguria/img/object_globe.png and b/htdocs/theme/auguria/img/object_globe.png differ diff --git a/htdocs/theme/auguria/img/object_group.png b/htdocs/theme/auguria/img/object_group.png index f69db27d482..552eb39fa31 100644 Binary files a/htdocs/theme/auguria/img/object_group.png and b/htdocs/theme/auguria/img/object_group.png differ diff --git a/htdocs/theme/auguria/img/object_holiday.png b/htdocs/theme/auguria/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/auguria/img/object_holiday.png and b/htdocs/theme/auguria/img/object_holiday.png differ diff --git a/htdocs/theme/auguria/img/object_invoice.png b/htdocs/theme/auguria/img/object_invoice.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_label.png b/htdocs/theme/auguria/img/object_label.png index 75a363ec8d5..b112af5cf0a 100644 Binary files a/htdocs/theme/auguria/img/object_label.png and b/htdocs/theme/auguria/img/object_label.png differ diff --git a/htdocs/theme/auguria/img/object_margin.png b/htdocs/theme/auguria/img/object_margin.png index 13e4b92c9ce..cd0eb4109f7 100644 Binary files a/htdocs/theme/auguria/img/object_margin.png and b/htdocs/theme/auguria/img/object_margin.png differ diff --git a/htdocs/theme/auguria/img/object_opensurvey.png b/htdocs/theme/auguria/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/auguria/img/object_opensurvey.png and b/htdocs/theme/auguria/img/object_opensurvey.png differ diff --git a/htdocs/theme/auguria/img/object_order.png b/htdocs/theme/auguria/img/object_order.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_payment.png b/htdocs/theme/auguria/img/object_payment.png index 95f4c29ed2f..5691147d8ff 100644 Binary files a/htdocs/theme/auguria/img/object_payment.png and b/htdocs/theme/auguria/img/object_payment.png differ diff --git a/htdocs/theme/auguria/img/object_phoning.png b/htdocs/theme/auguria/img/object_phoning.png index 5f11e40a81f..36cdcc8d4a2 100644 Binary files a/htdocs/theme/auguria/img/object_phoning.png and b/htdocs/theme/auguria/img/object_phoning.png differ diff --git a/htdocs/theme/auguria/img/object_product.png b/htdocs/theme/auguria/img/object_product.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/object_project.png b/htdocs/theme/auguria/img/object_project.png index 070fe326983..fd84ab427db 100644 Binary files a/htdocs/theme/auguria/img/object_project.png and b/htdocs/theme/auguria/img/object_project.png differ diff --git a/htdocs/theme/auguria/img/object_projectpub.png b/htdocs/theme/auguria/img/object_projectpub.png index 5ea2e846ddf..1444573cf05 100644 Binary files a/htdocs/theme/auguria/img/object_projectpub.png and b/htdocs/theme/auguria/img/object_projectpub.png differ diff --git a/htdocs/theme/auguria/img/object_projecttask.png b/htdocs/theme/auguria/img/object_projecttask.png index 3ec85fed9d3..4a01b50435a 100644 Binary files a/htdocs/theme/auguria/img/object_projecttask.png and b/htdocs/theme/auguria/img/object_projecttask.png differ diff --git a/htdocs/theme/auguria/img/object_propal.png b/htdocs/theme/auguria/img/object_propal.png old mode 100755 new mode 100644 index 4a52d65b9e6..2dc60e66b3e Binary files a/htdocs/theme/auguria/img/object_propal.png and b/htdocs/theme/auguria/img/object_propal.png differ diff --git a/htdocs/theme/auguria/img/object_reduc.png b/htdocs/theme/auguria/img/object_reduc.png index 4d5f811a891..ccfd2d2f5b2 100644 Binary files a/htdocs/theme/auguria/img/object_reduc.png and b/htdocs/theme/auguria/img/object_reduc.png differ diff --git a/htdocs/theme/auguria/img/object_rss.png b/htdocs/theme/auguria/img/object_rss.png index 8f4224b5a30..37372031157 100644 Binary files a/htdocs/theme/auguria/img/object_rss.png and b/htdocs/theme/auguria/img/object_rss.png differ diff --git a/htdocs/theme/auguria/img/object_service.png b/htdocs/theme/auguria/img/object_service.png index 2161bfd59cc..65e9041589f 100644 Binary files a/htdocs/theme/auguria/img/object_service.png and b/htdocs/theme/auguria/img/object_service.png differ diff --git a/htdocs/theme/auguria/img/object_skype.png b/htdocs/theme/auguria/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/auguria/img/object_skype.png and b/htdocs/theme/auguria/img/object_skype.png differ diff --git a/htdocs/theme/auguria/img/object_stock.png b/htdocs/theme/auguria/img/object_stock.png index 279a34f869a..2f439db7b50 100644 Binary files a/htdocs/theme/auguria/img/object_stock.png and b/htdocs/theme/auguria/img/object_stock.png differ diff --git a/htdocs/theme/auguria/img/object_task.png b/htdocs/theme/auguria/img/object_task.png index 24581634018..14dc14a9602 100644 Binary files a/htdocs/theme/auguria/img/object_task.png and b/htdocs/theme/auguria/img/object_task.png differ diff --git a/htdocs/theme/auguria/img/object_technic.png b/htdocs/theme/auguria/img/object_technic.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/auguria/img/object_technic.png and b/htdocs/theme/auguria/img/object_technic.png differ diff --git a/htdocs/theme/auguria/img/off.png b/htdocs/theme/auguria/img/off.png index 6b4604d38ed..f4217646b26 100644 Binary files a/htdocs/theme/auguria/img/off.png and b/htdocs/theme/auguria/img/off.png differ diff --git a/htdocs/theme/auguria/img/on.png b/htdocs/theme/auguria/img/on.png index 82572b9e1d1..728bb393536 100644 Binary files a/htdocs/theme/auguria/img/on.png and b/htdocs/theme/auguria/img/on.png differ diff --git a/htdocs/theme/auguria/img/pdf2.png b/htdocs/theme/auguria/img/pdf2.png index 4702d19fd50..06634550daa 100644 Binary files a/htdocs/theme/auguria/img/pdf2.png and b/htdocs/theme/auguria/img/pdf2.png differ diff --git a/htdocs/theme/auguria/img/pdf3.png b/htdocs/theme/auguria/img/pdf3.png index cd76e0f9253..f053591bf2d 100644 Binary files a/htdocs/theme/auguria/img/pdf3.png and b/htdocs/theme/auguria/img/pdf3.png differ diff --git a/htdocs/theme/auguria/img/play.png b/htdocs/theme/auguria/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/auguria/img/play.png and b/htdocs/theme/auguria/img/play.png differ diff --git a/htdocs/theme/auguria/img/puce.png b/htdocs/theme/auguria/img/puce.png index dfa83acd50d..8c116b0dc42 100644 Binary files a/htdocs/theme/auguria/img/puce.png and b/htdocs/theme/auguria/img/puce.png differ diff --git a/htdocs/theme/auguria/img/recent.png b/htdocs/theme/auguria/img/recent.png index 61daae778f5..a49fc171c06 100644 Binary files a/htdocs/theme/auguria/img/recent.png and b/htdocs/theme/auguria/img/recent.png differ diff --git a/htdocs/theme/auguria/img/redstar.png b/htdocs/theme/auguria/img/redstar.png index 001cde58667..486fd6770a2 100644 Binary files a/htdocs/theme/auguria/img/redstar.png and b/htdocs/theme/auguria/img/redstar.png differ diff --git a/htdocs/theme/auguria/img/refresh.png b/htdocs/theme/auguria/img/refresh.png index 046ce37b9c5..9994475cdfe 100644 Binary files a/htdocs/theme/auguria/img/refresh.png and b/htdocs/theme/auguria/img/refresh.png differ diff --git a/htdocs/theme/auguria/img/reload.png b/htdocs/theme/auguria/img/reload.png index 62056d2a89a..a4029f119de 100644 Binary files a/htdocs/theme/auguria/img/reload.png and b/htdocs/theme/auguria/img/reload.png differ diff --git a/htdocs/theme/auguria/img/rightarrow.png b/htdocs/theme/auguria/img/rightarrow.png index 2ea37440ecd..2c479d9453b 100644 Binary files a/htdocs/theme/auguria/img/rightarrow.png and b/htdocs/theme/auguria/img/rightarrow.png differ diff --git a/htdocs/theme/auguria/img/searchclear.png b/htdocs/theme/auguria/img/searchclear.png index 024e0c62cdd..203a85e10c4 100644 Binary files a/htdocs/theme/auguria/img/searchclear.png and b/htdocs/theme/auguria/img/searchclear.png differ diff --git a/htdocs/theme/auguria/img/setup.png b/htdocs/theme/auguria/img/setup.png index 1444d86ce2a..ca5f28b1d17 100644 Binary files a/htdocs/theme/auguria/img/setup.png and b/htdocs/theme/auguria/img/setup.png differ diff --git a/htdocs/theme/auguria/img/sort_asc.png b/htdocs/theme/auguria/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/auguria/img/sort_asc.png and b/htdocs/theme/auguria/img/sort_asc.png differ diff --git a/htdocs/theme/auguria/img/sort_asc_disabled.png b/htdocs/theme/auguria/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/auguria/img/sort_asc_disabled.png and b/htdocs/theme/auguria/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/auguria/img/sort_desc.png b/htdocs/theme/auguria/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/auguria/img/sort_desc.png and b/htdocs/theme/auguria/img/sort_desc.png differ diff --git a/htdocs/theme/auguria/img/sort_desc_disabled.png b/htdocs/theme/auguria/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/auguria/img/sort_desc_disabled.png and b/htdocs/theme/auguria/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/auguria/img/split.png b/htdocs/theme/auguria/img/split.png index 008557d7341..bb66213f413 100644 Binary files a/htdocs/theme/auguria/img/split.png and b/htdocs/theme/auguria/img/split.png differ diff --git a/htdocs/theme/auguria/img/stats.png b/htdocs/theme/auguria/img/stats.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/auguria/img/statut0.png b/htdocs/theme/auguria/img/statut0.png index 0f7b0bd4f87..d11252783a4 100644 Binary files a/htdocs/theme/auguria/img/statut0.png and b/htdocs/theme/auguria/img/statut0.png differ diff --git a/htdocs/theme/auguria/img/statut1.png b/htdocs/theme/auguria/img/statut1.png index 3e4650f4f02..558439d282e 100644 Binary files a/htdocs/theme/auguria/img/statut1.png and b/htdocs/theme/auguria/img/statut1.png differ diff --git a/htdocs/theme/auguria/img/statut3.png b/htdocs/theme/auguria/img/statut3.png index f49966eaaa1..e7515796683 100644 Binary files a/htdocs/theme/auguria/img/statut3.png and b/htdocs/theme/auguria/img/statut3.png differ diff --git a/htdocs/theme/auguria/img/statut4.png b/htdocs/theme/auguria/img/statut4.png index aed93a350ba..6ec1ba55961 100644 Binary files a/htdocs/theme/auguria/img/statut4.png and b/htdocs/theme/auguria/img/statut4.png differ diff --git a/htdocs/theme/auguria/img/statut5.png b/htdocs/theme/auguria/img/statut5.png index a2e22fe6f59..53264a0515d 100644 Binary files a/htdocs/theme/auguria/img/statut5.png and b/htdocs/theme/auguria/img/statut5.png differ diff --git a/htdocs/theme/auguria/img/statut7.png b/htdocs/theme/auguria/img/statut7.png index 50295a03ed5..8871a45519f 100644 Binary files a/htdocs/theme/auguria/img/statut7.png and b/htdocs/theme/auguria/img/statut7.png differ diff --git a/htdocs/theme/auguria/img/statut8.png b/htdocs/theme/auguria/img/statut8.png old mode 100755 new mode 100644 index 4d8f59be1c2..c24d4a9dac2 Binary files a/htdocs/theme/auguria/img/statut8.png and b/htdocs/theme/auguria/img/statut8.png differ diff --git a/htdocs/theme/auguria/img/statut9.png b/htdocs/theme/auguria/img/statut9.png old mode 100755 new mode 100644 index 5401cf9b03d..94b6dabf265 Binary files a/htdocs/theme/auguria/img/statut9.png and b/htdocs/theme/auguria/img/statut9.png differ diff --git a/htdocs/theme/auguria/img/stcomm-1.png b/htdocs/theme/auguria/img/stcomm-1.png index 52b3625ac05..df442fc1eda 100644 Binary files a/htdocs/theme/auguria/img/stcomm-1.png and b/htdocs/theme/auguria/img/stcomm-1.png differ diff --git a/htdocs/theme/auguria/img/stcomm-1_grayed.png b/htdocs/theme/auguria/img/stcomm-1_grayed.png index 20a7219535e..5942e6c72af 100644 Binary files a/htdocs/theme/auguria/img/stcomm-1_grayed.png and b/htdocs/theme/auguria/img/stcomm-1_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm0.png b/htdocs/theme/auguria/img/stcomm0.png index 6053eeda485..cbe60a02d28 100644 Binary files a/htdocs/theme/auguria/img/stcomm0.png and b/htdocs/theme/auguria/img/stcomm0.png differ diff --git a/htdocs/theme/auguria/img/stcomm0_grayed.png b/htdocs/theme/auguria/img/stcomm0_grayed.png index a92e1558506..9016db48b02 100644 Binary files a/htdocs/theme/auguria/img/stcomm0_grayed.png and b/htdocs/theme/auguria/img/stcomm0_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm1.png b/htdocs/theme/auguria/img/stcomm1.png index eb76c0fb179..6bdea492985 100644 Binary files a/htdocs/theme/auguria/img/stcomm1.png and b/htdocs/theme/auguria/img/stcomm1.png differ diff --git a/htdocs/theme/auguria/img/stcomm1_grayed.png b/htdocs/theme/auguria/img/stcomm1_grayed.png index 98ed423aa9e..367a55921e4 100644 Binary files a/htdocs/theme/auguria/img/stcomm1_grayed.png and b/htdocs/theme/auguria/img/stcomm1_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm2.png b/htdocs/theme/auguria/img/stcomm2.png index 1e76ce4946b..9e000b70dc9 100644 Binary files a/htdocs/theme/auguria/img/stcomm2.png and b/htdocs/theme/auguria/img/stcomm2.png differ diff --git a/htdocs/theme/auguria/img/stcomm2_grayed.png b/htdocs/theme/auguria/img/stcomm2_grayed.png index 0f2a4332cfc..f667e3573d0 100644 Binary files a/htdocs/theme/auguria/img/stcomm2_grayed.png and b/htdocs/theme/auguria/img/stcomm2_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm3.png b/htdocs/theme/auguria/img/stcomm3.png index 465234fcd3c..5a6c0aeface 100644 Binary files a/htdocs/theme/auguria/img/stcomm3.png and b/htdocs/theme/auguria/img/stcomm3.png differ diff --git a/htdocs/theme/auguria/img/stcomm3_grayed.png b/htdocs/theme/auguria/img/stcomm3_grayed.png index fc80eb2aebd..81a14c1e482 100644 Binary files a/htdocs/theme/auguria/img/stcomm3_grayed.png and b/htdocs/theme/auguria/img/stcomm3_grayed.png differ diff --git a/htdocs/theme/auguria/img/stcomm4.png b/htdocs/theme/auguria/img/stcomm4.png index c839a8acec5..3e26b4d06ed 100644 Binary files a/htdocs/theme/auguria/img/stcomm4.png and b/htdocs/theme/auguria/img/stcomm4.png differ diff --git a/htdocs/theme/auguria/img/stcomm4_grayed.png b/htdocs/theme/auguria/img/stcomm4_grayed.png index 4935499d917..4271aafb6ce 100644 Binary files a/htdocs/theme/auguria/img/stcomm4_grayed.png and b/htdocs/theme/auguria/img/stcomm4_grayed.png differ diff --git a/htdocs/theme/auguria/img/tab_background.png b/htdocs/theme/auguria/img/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/auguria/img/tab_background.png and b/htdocs/theme/auguria/img/tab_background.png differ diff --git a/htdocs/theme/auguria/img/tick.png b/htdocs/theme/auguria/img/tick.png index deb69ee75ec..9b035d99511 100644 Binary files a/htdocs/theme/auguria/img/tick.png and b/htdocs/theme/auguria/img/tick.png differ diff --git a/htdocs/theme/auguria/img/title.png b/htdocs/theme/auguria/img/title.png index bcd70489c80..bb48d617379 100644 Binary files a/htdocs/theme/auguria/img/title.png and b/htdocs/theme/auguria/img/title.png differ diff --git a/htdocs/theme/auguria/img/tmenu.jpg b/htdocs/theme/auguria/img/tmenu.jpg index 8db7fdcb6fa..4e51fef3fc7 100644 Binary files a/htdocs/theme/auguria/img/tmenu.jpg and b/htdocs/theme/auguria/img/tmenu.jpg differ diff --git a/htdocs/theme/auguria/img/tmenu2.jpg b/htdocs/theme/auguria/img/tmenu2.jpg index e5ca3f72414..920e0066341 100644 Binary files a/htdocs/theme/auguria/img/tmenu2.jpg and b/htdocs/theme/auguria/img/tmenu2.jpg differ diff --git a/htdocs/theme/auguria/img/tmenu3.jpg b/htdocs/theme/auguria/img/tmenu3.jpg index dc2434541cf..d42f804b026 100644 Binary files a/htdocs/theme/auguria/img/tmenu3.jpg and b/htdocs/theme/auguria/img/tmenu3.jpg differ diff --git a/htdocs/theme/auguria/img/tmenu_inverse.jpg b/htdocs/theme/auguria/img/tmenu_inverse.jpg index c8fe6d0aff2..e1efd44376e 100644 Binary files a/htdocs/theme/auguria/img/tmenu_inverse.jpg and b/htdocs/theme/auguria/img/tmenu_inverse.jpg differ diff --git a/htdocs/theme/auguria/img/unlock.png b/htdocs/theme/auguria/img/unlock.png index f3eebc59274..afefaa94d47 100644 Binary files a/htdocs/theme/auguria/img/unlock.png and b/htdocs/theme/auguria/img/unlock.png differ diff --git a/htdocs/theme/auguria/img/vcard.png b/htdocs/theme/auguria/img/vcard.png index e03026f87fb..315abdf179d 100644 Binary files a/htdocs/theme/auguria/img/vcard.png and b/htdocs/theme/auguria/img/vcard.png differ diff --git a/htdocs/theme/auguria/img/view.png b/htdocs/theme/auguria/img/view.png index 828c79a8323..76c1e9f1e6a 100644 Binary files a/htdocs/theme/auguria/img/view.png and b/htdocs/theme/auguria/img/view.png differ diff --git a/htdocs/theme/auguria/img/warning.png b/htdocs/theme/auguria/img/warning.png index ae8e35e781d..f1b93b8cc82 100644 Binary files a/htdocs/theme/auguria/img/warning.png and b/htdocs/theme/auguria/img/warning.png differ diff --git a/htdocs/theme/auguria/thumb.png b/htdocs/theme/auguria/thumb.png index b51b386fc7a..88cb0e849a2 100644 Binary files a/htdocs/theme/auguria/thumb.png and b/htdocs/theme/auguria/thumb.png differ diff --git a/htdocs/theme/bureau2crea/img/1downarrow.png b/htdocs/theme/bureau2crea/img/1downarrow.png index c77e4607958..316fe442e2b 100644 Binary files a/htdocs/theme/bureau2crea/img/1downarrow.png and b/htdocs/theme/bureau2crea/img/1downarrow.png differ diff --git a/htdocs/theme/bureau2crea/img/1downarrow_selected.png b/htdocs/theme/bureau2crea/img/1downarrow_selected.png index d5fed48abeb..082a545addb 100644 Binary files a/htdocs/theme/bureau2crea/img/1downarrow_selected.png and b/htdocs/theme/bureau2crea/img/1downarrow_selected.png differ diff --git a/htdocs/theme/bureau2crea/img/1leftarrow.png b/htdocs/theme/bureau2crea/img/1leftarrow.png index ef6dbd377a6..026a4cfff80 100644 Binary files a/htdocs/theme/bureau2crea/img/1leftarrow.png and b/htdocs/theme/bureau2crea/img/1leftarrow.png differ diff --git a/htdocs/theme/bureau2crea/img/1leftarrow_selected.png b/htdocs/theme/bureau2crea/img/1leftarrow_selected.png index 423b77600d0..4835cf8f508 100644 Binary files a/htdocs/theme/bureau2crea/img/1leftarrow_selected.png and b/htdocs/theme/bureau2crea/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/bureau2crea/img/1rightarrow.png b/htdocs/theme/bureau2crea/img/1rightarrow.png index 0e3eb3372ff..54fe3dcf366 100644 Binary files a/htdocs/theme/bureau2crea/img/1rightarrow.png and b/htdocs/theme/bureau2crea/img/1rightarrow.png differ diff --git a/htdocs/theme/bureau2crea/img/1rightarrow_selected.png b/htdocs/theme/bureau2crea/img/1rightarrow_selected.png index cc15d2f2144..2cd1136c77a 100644 Binary files a/htdocs/theme/bureau2crea/img/1rightarrow_selected.png and b/htdocs/theme/bureau2crea/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/bureau2crea/img/1uparrow.png b/htdocs/theme/bureau2crea/img/1uparrow.png index f2fd9a85eed..e4f7b42acb6 100644 Binary files a/htdocs/theme/bureau2crea/img/1uparrow.png and b/htdocs/theme/bureau2crea/img/1uparrow.png differ diff --git a/htdocs/theme/bureau2crea/img/1uparrow_selected.png b/htdocs/theme/bureau2crea/img/1uparrow_selected.png index e4c4ec1a6cb..d19fae7a61d 100644 Binary files a/htdocs/theme/bureau2crea/img/1uparrow_selected.png and b/htdocs/theme/bureau2crea/img/1uparrow_selected.png differ diff --git a/htdocs/theme/bureau2crea/img/2.png b/htdocs/theme/bureau2crea/img/2.png index ad65c580ee7..f592543dd8e 100644 Binary files a/htdocs/theme/bureau2crea/img/2.png and b/htdocs/theme/bureau2crea/img/2.png differ diff --git a/htdocs/theme/bureau2crea/img/addfile.png b/htdocs/theme/bureau2crea/img/addfile.png index 3bfa627d758..1cb7af0ad8a 100644 Binary files a/htdocs/theme/bureau2crea/img/addfile.png and b/htdocs/theme/bureau2crea/img/addfile.png differ diff --git a/htdocs/theme/bureau2crea/img/banner_02.jpg b/htdocs/theme/bureau2crea/img/banner_02.jpg index 29e0619e77f..81635fd2a59 100644 Binary files a/htdocs/theme/bureau2crea/img/banner_02.jpg and b/htdocs/theme/bureau2crea/img/banner_02.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png b/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png index 941207d85da..d2fbe3a7a13 100644 Binary files a/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png and b/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png differ diff --git a/htdocs/theme/bureau2crea/img/bg-rubrique.png b/htdocs/theme/bureau2crea/img/bg-rubrique.png index 6bc08feb211..9abf1dc1459 100644 Binary files a/htdocs/theme/bureau2crea/img/bg-rubrique.png and b/htdocs/theme/bureau2crea/img/bg-rubrique.png differ diff --git a/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png b/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png index abf662a530b..ad6484fcbe9 100644 Binary files a/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png and b/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg b/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg index f354fabf32d..f24b76ee016 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg and b/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg b/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg index d2c3f60f44d..eae9fb1217b 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg and b/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg b/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg index 05b95df748c..48911bf6f13 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg and b/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnRed.jpg b/htdocs/theme/bureau2crea/img/bg_btnRed.jpg index 9e309245c43..c8c7f55c85d 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btnRed.jpg and b/htdocs/theme/bureau2crea/img/bg_btnRed.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg b/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg index b09d2bb5a5a..563cebdc3e7 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg and b/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_green.jpg b/htdocs/theme/bureau2crea/img/bg_btn_green.jpg index 513f0eb0fd8..d29a1bb0d61 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_green.jpg and b/htdocs/theme/bureau2crea/img/bg_btn_green.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_red.jpg b/htdocs/theme/bureau2crea/img/bg_btn_red.jpg index ad8da842c7c..fb11e4f2daf 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_red.jpg and b/htdocs/theme/bureau2crea/img/bg_btn_red.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg b/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg index 629a40617e5..354fb66cb5e 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg and b/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg b/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg index c8cb8d9f39c..d3f196e469d 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg and b/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg b/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg index 4634207f71b..946a51b63a8 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg and b/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg b/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg index 00071c4ec42..f152d6d083f 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg and b/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg b/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg index b095fe478a4..0fc515742a3 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg and b/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_mainNav.jpg b/htdocs/theme/bureau2crea/img/bg_mainNav.jpg index 93e65598156..15387ee476b 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_mainNav.jpg and b/htdocs/theme/bureau2crea/img/bg_mainNav.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg b/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg index 34008a24cd7..ad42dee2ee9 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg and b/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_other_table.jpg b/htdocs/theme/bureau2crea/img/bg_other_table.jpg index 086a46a8613..f4409cbaae5 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_other_table.jpg and b/htdocs/theme/bureau2crea/img/bg_other_table.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg index 7df7fd0ab02..fd09bb40da0 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg and b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg index 12accbf3ccb..ca483b7b295 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg and b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg index d7324957df6..1e41b87c6ea 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg and b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg index 1d012589854..3df9a20bcd5 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg and b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu.jpg index 5fc95c7572c..985311e8a1e 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenu.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg index ccd9b835f7d..fc064ef4dcf 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg index 40caeea6e67..9c3342222aa 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg index 6fed6c09e1a..b5507043898 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg index 28dcb500923..317dde2f556 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg and b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_vmenu.jpg b/htdocs/theme/bureau2crea/img/bg_vmenu.jpg index df83d4bd687..84d883d8d69 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_vmenu.jpg and b/htdocs/theme/bureau2crea/img/bg_vmenu.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bg_working_table.jpg b/htdocs/theme/bureau2crea/img/bg_working_table.jpg index dd925af6d1d..bb2c66aded3 100644 Binary files a/htdocs/theme/bureau2crea/img/bg_working_table.jpg and b/htdocs/theme/bureau2crea/img/bg_working_table.jpg differ diff --git a/htdocs/theme/bureau2crea/img/body_bg.jpg b/htdocs/theme/bureau2crea/img/body_bg.jpg index ddde2c5f5aa..0480bfdc738 100644 Binary files a/htdocs/theme/bureau2crea/img/body_bg.jpg and b/htdocs/theme/bureau2crea/img/body_bg.jpg differ diff --git a/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png b/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png index 8f61b220c59..10e03744ace 100644 Binary files a/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png and b/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png differ diff --git a/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png b/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png index f27609ae8ee..f0ea7d10c5c 100644 Binary files a/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png and b/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png differ diff --git a/htdocs/theme/bureau2crea/img/button_edit.png b/htdocs/theme/bureau2crea/img/button_edit.png index ce8b226710b..894b4cfd78e 100644 Binary files a/htdocs/theme/bureau2crea/img/button_edit.png and b/htdocs/theme/bureau2crea/img/button_edit.png differ diff --git a/htdocs/theme/bureau2crea/img/calc.png b/htdocs/theme/bureau2crea/img/calc.png index d3bd2bbc824..5e6471408d8 100644 Binary files a/htdocs/theme/bureau2crea/img/calc.png and b/htdocs/theme/bureau2crea/img/calc.png differ diff --git a/htdocs/theme/bureau2crea/img/calendar.png b/htdocs/theme/bureau2crea/img/calendar.png index 90829a353c3..bbe6c27f041 100644 Binary files a/htdocs/theme/bureau2crea/img/calendar.png and b/htdocs/theme/bureau2crea/img/calendar.png differ diff --git a/htdocs/theme/bureau2crea/img/call.png b/htdocs/theme/bureau2crea/img/call.png index 8315c57d61d..ddfc1b7bd90 100644 Binary files a/htdocs/theme/bureau2crea/img/call.png and b/htdocs/theme/bureau2crea/img/call.png differ diff --git a/htdocs/theme/bureau2crea/img/call_out.png b/htdocs/theme/bureau2crea/img/call_out.png index bf972d8b1ae..b5a22eb827b 100644 Binary files a/htdocs/theme/bureau2crea/img/call_out.png and b/htdocs/theme/bureau2crea/img/call_out.png differ diff --git a/htdocs/theme/bureau2crea/img/close.png b/htdocs/theme/bureau2crea/img/close.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/bureau2crea/img/close.png and b/htdocs/theme/bureau2crea/img/close.png differ diff --git a/htdocs/theme/bureau2crea/img/close_title.png b/htdocs/theme/bureau2crea/img/close_title.png index 24eda772954..bebb74d9861 100644 Binary files a/htdocs/theme/bureau2crea/img/close_title.png and b/htdocs/theme/bureau2crea/img/close_title.png differ diff --git a/htdocs/theme/bureau2crea/img/delete.png b/htdocs/theme/bureau2crea/img/delete.png index 221cd3c76b9..8ad73597be7 100644 Binary files a/htdocs/theme/bureau2crea/img/delete.png and b/htdocs/theme/bureau2crea/img/delete.png differ diff --git a/htdocs/theme/bureau2crea/img/detail.png b/htdocs/theme/bureau2crea/img/detail.png index 2d31ec2202e..05562bef842 100644 Binary files a/htdocs/theme/bureau2crea/img/detail.png and b/htdocs/theme/bureau2crea/img/detail.png differ diff --git a/htdocs/theme/bureau2crea/img/disable.png b/htdocs/theme/bureau2crea/img/disable.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/bureau2crea/img/disable.png and b/htdocs/theme/bureau2crea/img/disable.png differ diff --git a/htdocs/theme/bureau2crea/img/edit.png b/htdocs/theme/bureau2crea/img/edit.png index 2fe9e5bde4d..0f5fa5de31f 100644 Binary files a/htdocs/theme/bureau2crea/img/edit.png and b/htdocs/theme/bureau2crea/img/edit.png differ diff --git a/htdocs/theme/bureau2crea/img/edit_add.png b/htdocs/theme/bureau2crea/img/edit_add.png index f6e67164208..ae205e9d770 100644 Binary files a/htdocs/theme/bureau2crea/img/edit_add.png and b/htdocs/theme/bureau2crea/img/edit_add.png differ diff --git a/htdocs/theme/bureau2crea/img/edit_remove.png b/htdocs/theme/bureau2crea/img/edit_remove.png index 0c7ca54fa1f..bc4bdb360fa 100644 Binary files a/htdocs/theme/bureau2crea/img/edit_remove.png and b/htdocs/theme/bureau2crea/img/edit_remove.png differ diff --git a/htdocs/theme/bureau2crea/img/editdelete.png b/htdocs/theme/bureau2crea/img/editdelete.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/bureau2crea/img/editdelete.png and b/htdocs/theme/bureau2crea/img/editdelete.png differ diff --git a/htdocs/theme/bureau2crea/img/file.png b/htdocs/theme/bureau2crea/img/file.png index 98bc98d2f1f..73c66e9b2b3 100644 Binary files a/htdocs/theme/bureau2crea/img/file.png and b/htdocs/theme/bureau2crea/img/file.png differ diff --git a/htdocs/theme/bureau2crea/img/filenew.png b/htdocs/theme/bureau2crea/img/filenew.png index 1f6581389d1..8680cce82bf 100644 Binary files a/htdocs/theme/bureau2crea/img/filenew.png and b/htdocs/theme/bureau2crea/img/filenew.png differ diff --git a/htdocs/theme/bureau2crea/img/filter.png b/htdocs/theme/bureau2crea/img/filter.png index 4baa3a3be8e..917715107bd 100644 Binary files a/htdocs/theme/bureau2crea/img/filter.png and b/htdocs/theme/bureau2crea/img/filter.png differ diff --git a/htdocs/theme/bureau2crea/img/folder-open.png b/htdocs/theme/bureau2crea/img/folder-open.png index 1687cd1b536..1db8369b3d5 100644 Binary files a/htdocs/theme/bureau2crea/img/folder-open.png and b/htdocs/theme/bureau2crea/img/folder-open.png differ diff --git a/htdocs/theme/bureau2crea/img/folder.png b/htdocs/theme/bureau2crea/img/folder.png index 908a6df9348..04a24af2e22 100644 Binary files a/htdocs/theme/bureau2crea/img/folder.png and b/htdocs/theme/bureau2crea/img/folder.png differ diff --git a/htdocs/theme/bureau2crea/img/grip.png b/htdocs/theme/bureau2crea/img/grip.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/bureau2crea/img/grip.png and b/htdocs/theme/bureau2crea/img/grip.png differ diff --git a/htdocs/theme/bureau2crea/img/grip_title.png b/htdocs/theme/bureau2crea/img/grip_title.png index 9b3c093c790..d6ecce335cb 100644 Binary files a/htdocs/theme/bureau2crea/img/grip_title.png and b/htdocs/theme/bureau2crea/img/grip_title.png differ diff --git a/htdocs/theme/bureau2crea/img/headbg.jpg b/htdocs/theme/bureau2crea/img/headbg.jpg index 7d1374e1fc9..160821354cc 100644 Binary files a/htdocs/theme/bureau2crea/img/headbg.jpg and b/htdocs/theme/bureau2crea/img/headbg.jpg differ diff --git a/htdocs/theme/bureau2crea/img/headbg2.jpg b/htdocs/theme/bureau2crea/img/headbg2.jpg index 7917abd9c07..0bc44f0ea99 100644 Binary files a/htdocs/theme/bureau2crea/img/headbg2.jpg and b/htdocs/theme/bureau2crea/img/headbg2.jpg differ diff --git a/htdocs/theme/bureau2crea/img/help.png b/htdocs/theme/bureau2crea/img/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/bureau2crea/img/help.png and b/htdocs/theme/bureau2crea/img/help.png differ diff --git a/htdocs/theme/bureau2crea/img/high.png b/htdocs/theme/bureau2crea/img/high.png index f893de7abf3..c0eaee6542f 100644 Binary files a/htdocs/theme/bureau2crea/img/high.png and b/htdocs/theme/bureau2crea/img/high.png differ diff --git a/htdocs/theme/bureau2crea/img/history.png b/htdocs/theme/bureau2crea/img/history.png index 932921c1f4c..0fa4283476b 100644 Binary files a/htdocs/theme/bureau2crea/img/history.png and b/htdocs/theme/bureau2crea/img/history.png differ diff --git a/htdocs/theme/bureau2crea/img/indent1.png b/htdocs/theme/bureau2crea/img/indent1.png index 52ebb2bd738..09695ac754f 100644 Binary files a/htdocs/theme/bureau2crea/img/indent1.png and b/htdocs/theme/bureau2crea/img/indent1.png differ diff --git a/htdocs/theme/bureau2crea/img/info.png b/htdocs/theme/bureau2crea/img/info.png index 16f932283ad..db8ba04fac5 100644 Binary files a/htdocs/theme/bureau2crea/img/info.png and b/htdocs/theme/bureau2crea/img/info.png differ diff --git a/htdocs/theme/bureau2crea/img/lock.png b/htdocs/theme/bureau2crea/img/lock.png index 8c2e2cbdb09..3d99cf1eaef 100644 Binary files a/htdocs/theme/bureau2crea/img/lock.png and b/htdocs/theme/bureau2crea/img/lock.png differ diff --git a/htdocs/theme/bureau2crea/img/login_background.png b/htdocs/theme/bureau2crea/img/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/bureau2crea/img/login_background.png and b/htdocs/theme/bureau2crea/img/login_background.png differ diff --git a/htdocs/theme/bureau2crea/img/logout.png b/htdocs/theme/bureau2crea/img/logout.png index cfff7ba61d1..84bd94e7b81 100644 Binary files a/htdocs/theme/bureau2crea/img/logout.png and b/htdocs/theme/bureau2crea/img/logout.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/agenda.png b/htdocs/theme/bureau2crea/img/menus/agenda.png index 2bea3152a10..866037c9b54 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/agenda.png and b/htdocs/theme/bureau2crea/img/menus/agenda.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/commercial.png b/htdocs/theme/bureau2crea/img/menus/commercial.png index e520f7eb71e..efc1b3f0608 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/commercial.png and b/htdocs/theme/bureau2crea/img/menus/commercial.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg b/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg index ab5511b57f1..7319c16f9af 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg and b/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg differ diff --git a/htdocs/theme/bureau2crea/img/menus/generic3.png b/htdocs/theme/bureau2crea/img/menus/generic3.png index d3ed4fa89b3..e22f73aa6f9 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/generic3.png and b/htdocs/theme/bureau2crea/img/menus/generic3.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/home.png b/htdocs/theme/bureau2crea/img/menus/home.png index eec3240070b..f4d0d917d1f 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/home.png and b/htdocs/theme/bureau2crea/img/menus/home.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/mail.png b/htdocs/theme/bureau2crea/img/menus/mail.png index dab5feda5cd..d715ec7810c 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/mail.png and b/htdocs/theme/bureau2crea/img/menus/mail.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/products.png b/htdocs/theme/bureau2crea/img/menus/products.png index d1081185c44..6f5f45269ee 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/products.png and b/htdocs/theme/bureau2crea/img/menus/products.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/project.png b/htdocs/theme/bureau2crea/img/menus/project.png index 5bc0f86b4be..882235d2cd3 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/project.png and b/htdocs/theme/bureau2crea/img/menus/project.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/shop.png b/htdocs/theme/bureau2crea/img/menus/shop.png index 89627d8b332..efd6859ab60 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/shop.png and b/htdocs/theme/bureau2crea/img/menus/shop.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/tab_background.png b/htdocs/theme/bureau2crea/img/menus/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/tab_background.png and b/htdocs/theme/bureau2crea/img/menus/tab_background.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/tools.png b/htdocs/theme/bureau2crea/img/menus/tools.png index 17215ec5899..c053f660ebf 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/tools.png and b/htdocs/theme/bureau2crea/img/menus/tools.png differ diff --git a/htdocs/theme/bureau2crea/img/menus/trtitle.png b/htdocs/theme/bureau2crea/img/menus/trtitle.png index a63f7868c5e..e1841a4f7a7 100644 Binary files a/htdocs/theme/bureau2crea/img/menus/trtitle.png and b/htdocs/theme/bureau2crea/img/menus/trtitle.png differ diff --git a/htdocs/theme/bureau2crea/img/nav.jpg b/htdocs/theme/bureau2crea/img/nav.jpg index 28a92271dcc..c4f28779dfe 100644 Binary files a/htdocs/theme/bureau2crea/img/nav.jpg and b/htdocs/theme/bureau2crea/img/nav.jpg differ diff --git a/htdocs/theme/bureau2crea/img/next.png b/htdocs/theme/bureau2crea/img/next.png index dc8fa61930b..aff8f9e2ca5 100644 Binary files a/htdocs/theme/bureau2crea/img/next.png and b/htdocs/theme/bureau2crea/img/next.png differ diff --git a/htdocs/theme/bureau2crea/img/object_account.png b/htdocs/theme/bureau2crea/img/object_account.png index 66b1b52471f..82f72c25740 100644 Binary files a/htdocs/theme/bureau2crea/img/object_account.png and b/htdocs/theme/bureau2crea/img/object_account.png differ diff --git a/htdocs/theme/bureau2crea/img/object_action.png b/htdocs/theme/bureau2crea/img/object_action.png index adf1860a462..9844c2dfa9b 100644 Binary files a/htdocs/theme/bureau2crea/img/object_action.png and b/htdocs/theme/bureau2crea/img/object_action.png differ diff --git a/htdocs/theme/bureau2crea/img/object_action_rdv.png b/htdocs/theme/bureau2crea/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/bureau2crea/img/object_action_rdv.png and b/htdocs/theme/bureau2crea/img/object_action_rdv.png differ diff --git a/htdocs/theme/bureau2crea/img/object_address.png b/htdocs/theme/bureau2crea/img/object_address.png index b20734da69a..a4b878966dc 100644 Binary files a/htdocs/theme/bureau2crea/img/object_address.png and b/htdocs/theme/bureau2crea/img/object_address.png differ diff --git a/htdocs/theme/bureau2crea/img/object_barcode.png b/htdocs/theme/bureau2crea/img/object_barcode.png index 4eb6082ec31..9241513f0b8 100644 Binary files a/htdocs/theme/bureau2crea/img/object_barcode.png and b/htdocs/theme/bureau2crea/img/object_barcode.png differ diff --git a/htdocs/theme/bureau2crea/img/object_bill.png b/htdocs/theme/bureau2crea/img/object_bill.png index e1cb50de2e6..277b6ab3233 100644 Binary files a/htdocs/theme/bureau2crea/img/object_bill.png and b/htdocs/theme/bureau2crea/img/object_bill.png differ diff --git a/htdocs/theme/bureau2crea/img/object_billa.png b/htdocs/theme/bureau2crea/img/object_billa.png index da4e4e8d5d9..2589f34bfed 100644 Binary files a/htdocs/theme/bureau2crea/img/object_billa.png and b/htdocs/theme/bureau2crea/img/object_billa.png differ diff --git a/htdocs/theme/bureau2crea/img/object_billd.png b/htdocs/theme/bureau2crea/img/object_billd.png index 11aa959cc43..201dc9057ae 100644 Binary files a/htdocs/theme/bureau2crea/img/object_billd.png and b/htdocs/theme/bureau2crea/img/object_billd.png differ diff --git a/htdocs/theme/bureau2crea/img/object_billr.png b/htdocs/theme/bureau2crea/img/object_billr.png index e933aebd65d..18b8701685e 100644 Binary files a/htdocs/theme/bureau2crea/img/object_billr.png and b/htdocs/theme/bureau2crea/img/object_billr.png differ diff --git a/htdocs/theme/bureau2crea/img/object_book.png b/htdocs/theme/bureau2crea/img/object_book.png index 6df91021589..cbbc05e8e72 100644 Binary files a/htdocs/theme/bureau2crea/img/object_book.png and b/htdocs/theme/bureau2crea/img/object_book.png differ diff --git a/htdocs/theme/bureau2crea/img/object_bookmark.png b/htdocs/theme/bureau2crea/img/object_bookmark.png index 1a6af792525..a78697bdc3b 100644 Binary files a/htdocs/theme/bureau2crea/img/object_bookmark.png and b/htdocs/theme/bureau2crea/img/object_bookmark.png differ diff --git a/htdocs/theme/bureau2crea/img/object_calendar.png b/htdocs/theme/bureau2crea/img/object_calendar.png index ec670d8857b..c647b7f998d 100644 Binary files a/htdocs/theme/bureau2crea/img/object_calendar.png and b/htdocs/theme/bureau2crea/img/object_calendar.png differ diff --git a/htdocs/theme/bureau2crea/img/object_calendarday.png b/htdocs/theme/bureau2crea/img/object_calendarday.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/bureau2crea/img/object_calendarweek.png b/htdocs/theme/bureau2crea/img/object_calendarweek.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/bureau2crea/img/object_category-expanded.png b/htdocs/theme/bureau2crea/img/object_category-expanded.png index 330d649a2b8..af943c376e6 100644 Binary files a/htdocs/theme/bureau2crea/img/object_category-expanded.png and b/htdocs/theme/bureau2crea/img/object_category-expanded.png differ diff --git a/htdocs/theme/bureau2crea/img/object_category.png b/htdocs/theme/bureau2crea/img/object_category.png index 5bf3c91df8d..c7e79d4d408 100644 Binary files a/htdocs/theme/bureau2crea/img/object_category.png and b/htdocs/theme/bureau2crea/img/object_category.png differ diff --git a/htdocs/theme/bureau2crea/img/object_commercial.png b/htdocs/theme/bureau2crea/img/object_commercial.png index 1af9828796b..ad1519f111c 100644 Binary files a/htdocs/theme/bureau2crea/img/object_commercial.png and b/htdocs/theme/bureau2crea/img/object_commercial.png differ diff --git a/htdocs/theme/bureau2crea/img/object_company.png b/htdocs/theme/bureau2crea/img/object_company.png index 614d760d936..58021fa506a 100644 Binary files a/htdocs/theme/bureau2crea/img/object_company.png and b/htdocs/theme/bureau2crea/img/object_company.png differ diff --git a/htdocs/theme/bureau2crea/img/object_contact.png b/htdocs/theme/bureau2crea/img/object_contact.png index 17926656455..e98a7e367e2 100644 Binary files a/htdocs/theme/bureau2crea/img/object_contact.png and b/htdocs/theme/bureau2crea/img/object_contact.png differ diff --git a/htdocs/theme/bureau2crea/img/object_contact_all.png b/htdocs/theme/bureau2crea/img/object_contact_all.png index bac3ede119a..f5c80635c28 100644 Binary files a/htdocs/theme/bureau2crea/img/object_contact_all.png and b/htdocs/theme/bureau2crea/img/object_contact_all.png differ diff --git a/htdocs/theme/bureau2crea/img/object_contract.png b/htdocs/theme/bureau2crea/img/object_contract.png index 97e51f9f800..78af93d559f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_contract.png and b/htdocs/theme/bureau2crea/img/object_contract.png differ diff --git a/htdocs/theme/bureau2crea/img/object_cron.png b/htdocs/theme/bureau2crea/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/bureau2crea/img/object_cron.png and b/htdocs/theme/bureau2crea/img/object_cron.png differ diff --git a/htdocs/theme/bureau2crea/img/object_dir.png b/htdocs/theme/bureau2crea/img/object_dir.png index f02c3d8f2a0..7324bca0143 100644 Binary files a/htdocs/theme/bureau2crea/img/object_dir.png and b/htdocs/theme/bureau2crea/img/object_dir.png differ diff --git a/htdocs/theme/bureau2crea/img/object_email.png b/htdocs/theme/bureau2crea/img/object_email.png index ded4af2949a..fdda80ed4cf 100644 Binary files a/htdocs/theme/bureau2crea/img/object_email.png and b/htdocs/theme/bureau2crea/img/object_email.png differ diff --git a/htdocs/theme/bureau2crea/img/object_energie.png b/htdocs/theme/bureau2crea/img/object_energie.png index 572c80b8a5b..27b3b52f2c6 100644 Binary files a/htdocs/theme/bureau2crea/img/object_energie.png and b/htdocs/theme/bureau2crea/img/object_energie.png differ diff --git a/htdocs/theme/bureau2crea/img/object_generic.png b/htdocs/theme/bureau2crea/img/object_generic.png index 7ec4355a7c2..39e0ab9f52f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_generic.png and b/htdocs/theme/bureau2crea/img/object_generic.png differ diff --git a/htdocs/theme/bureau2crea/img/object_globe.png b/htdocs/theme/bureau2crea/img/object_globe.png index f3fa11be499..701e24b1c46 100644 Binary files a/htdocs/theme/bureau2crea/img/object_globe.png and b/htdocs/theme/bureau2crea/img/object_globe.png differ diff --git a/htdocs/theme/bureau2crea/img/object_group.png b/htdocs/theme/bureau2crea/img/object_group.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_group.png and b/htdocs/theme/bureau2crea/img/object_group.png differ diff --git a/htdocs/theme/bureau2crea/img/object_holiday.png b/htdocs/theme/bureau2crea/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/bureau2crea/img/object_holiday.png and b/htdocs/theme/bureau2crea/img/object_holiday.png differ diff --git a/htdocs/theme/bureau2crea/img/object_intervention.png b/htdocs/theme/bureau2crea/img/object_intervention.png index f197c86fc20..09cd8370678 100644 Binary files a/htdocs/theme/bureau2crea/img/object_intervention.png and b/htdocs/theme/bureau2crea/img/object_intervention.png differ diff --git a/htdocs/theme/bureau2crea/img/object_invoice.png b/htdocs/theme/bureau2crea/img/object_invoice.png index e1cb50de2e6..277b6ab3233 100644 Binary files a/htdocs/theme/bureau2crea/img/object_invoice.png and b/htdocs/theme/bureau2crea/img/object_invoice.png differ diff --git a/htdocs/theme/bureau2crea/img/object_label.png b/htdocs/theme/bureau2crea/img/object_label.png index 913d3cdcd5b..b112af5cf0a 100644 Binary files a/htdocs/theme/bureau2crea/img/object_label.png and b/htdocs/theme/bureau2crea/img/object_label.png differ diff --git a/htdocs/theme/bureau2crea/img/object_margin.png b/htdocs/theme/bureau2crea/img/object_margin.png index 13e4b92c9ce..cd0eb4109f7 100644 Binary files a/htdocs/theme/bureau2crea/img/object_margin.png and b/htdocs/theme/bureau2crea/img/object_margin.png differ diff --git a/htdocs/theme/bureau2crea/img/object_opensurvey.png b/htdocs/theme/bureau2crea/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/bureau2crea/img/object_opensurvey.png and b/htdocs/theme/bureau2crea/img/object_opensurvey.png differ diff --git a/htdocs/theme/bureau2crea/img/object_order.png b/htdocs/theme/bureau2crea/img/object_order.png index fa3414dbf69..1516cd03433 100644 Binary files a/htdocs/theme/bureau2crea/img/object_order.png and b/htdocs/theme/bureau2crea/img/object_order.png differ diff --git a/htdocs/theme/bureau2crea/img/object_payment.png b/htdocs/theme/bureau2crea/img/object_payment.png index 10c3066a00c..f8ecf1d144e 100644 Binary files a/htdocs/theme/bureau2crea/img/object_payment.png and b/htdocs/theme/bureau2crea/img/object_payment.png differ diff --git a/htdocs/theme/bureau2crea/img/object_phoning.png b/htdocs/theme/bureau2crea/img/object_phoning.png index 3a9a37836fb..9f5a14edd23 100644 Binary files a/htdocs/theme/bureau2crea/img/object_phoning.png and b/htdocs/theme/bureau2crea/img/object_phoning.png differ diff --git a/htdocs/theme/bureau2crea/img/object_product.png b/htdocs/theme/bureau2crea/img/object_product.png index 24c7bf76783..f6477644a1f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_product.png and b/htdocs/theme/bureau2crea/img/object_product.png differ diff --git a/htdocs/theme/bureau2crea/img/object_project.png b/htdocs/theme/bureau2crea/img/object_project.png index 47029fed03d..bea2ebd1f7f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_project.png and b/htdocs/theme/bureau2crea/img/object_project.png differ diff --git a/htdocs/theme/bureau2crea/img/object_projectpub.png b/htdocs/theme/bureau2crea/img/object_projectpub.png index 9ac8f39355f..1ba7da16dcc 100644 Binary files a/htdocs/theme/bureau2crea/img/object_projectpub.png and b/htdocs/theme/bureau2crea/img/object_projectpub.png differ diff --git a/htdocs/theme/bureau2crea/img/object_projecttask.png b/htdocs/theme/bureau2crea/img/object_projecttask.png index a3a580c3019..7aff1a2ee20 100644 Binary files a/htdocs/theme/bureau2crea/img/object_projecttask.png and b/htdocs/theme/bureau2crea/img/object_projecttask.png differ diff --git a/htdocs/theme/bureau2crea/img/object_propal.png b/htdocs/theme/bureau2crea/img/object_propal.png index b7780a6b66f..4e66eebbedb 100644 Binary files a/htdocs/theme/bureau2crea/img/object_propal.png and b/htdocs/theme/bureau2crea/img/object_propal.png differ diff --git a/htdocs/theme/bureau2crea/img/object_reduc.png b/htdocs/theme/bureau2crea/img/object_reduc.png index fd02156f297..39dcc0fe6a0 100644 Binary files a/htdocs/theme/bureau2crea/img/object_reduc.png and b/htdocs/theme/bureau2crea/img/object_reduc.png differ diff --git a/htdocs/theme/bureau2crea/img/object_rss.png b/htdocs/theme/bureau2crea/img/object_rss.png index dad39390fa4..f3f9db58d95 100644 Binary files a/htdocs/theme/bureau2crea/img/object_rss.png and b/htdocs/theme/bureau2crea/img/object_rss.png differ diff --git a/htdocs/theme/bureau2crea/img/object_search.png b/htdocs/theme/bureau2crea/img/object_search.png index 2627db2a7ba..6ffb1c806c7 100644 Binary files a/htdocs/theme/bureau2crea/img/object_search.png and b/htdocs/theme/bureau2crea/img/object_search.png differ diff --git a/htdocs/theme/bureau2crea/img/object_sending.png b/htdocs/theme/bureau2crea/img/object_sending.png index 2e267bae6e4..93404176e87 100644 Binary files a/htdocs/theme/bureau2crea/img/object_sending.png and b/htdocs/theme/bureau2crea/img/object_sending.png differ diff --git a/htdocs/theme/bureau2crea/img/object_service.png b/htdocs/theme/bureau2crea/img/object_service.png index 9a6eb8f091a..f6477644a1f 100644 Binary files a/htdocs/theme/bureau2crea/img/object_service.png and b/htdocs/theme/bureau2crea/img/object_service.png differ diff --git a/htdocs/theme/bureau2crea/img/object_skype.png b/htdocs/theme/bureau2crea/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/bureau2crea/img/object_skype.png and b/htdocs/theme/bureau2crea/img/object_skype.png differ diff --git a/htdocs/theme/bureau2crea/img/object_stock.png b/htdocs/theme/bureau2crea/img/object_stock.png index 0dae23bfdfb..c7e79d4d408 100644 Binary files a/htdocs/theme/bureau2crea/img/object_stock.png and b/htdocs/theme/bureau2crea/img/object_stock.png differ diff --git a/htdocs/theme/bureau2crea/img/object_task.png b/htdocs/theme/bureau2crea/img/object_task.png index c5fbb2a031a..20b9d641a23 100644 Binary files a/htdocs/theme/bureau2crea/img/object_task.png and b/htdocs/theme/bureau2crea/img/object_task.png differ diff --git a/htdocs/theme/bureau2crea/img/object_technic.png b/htdocs/theme/bureau2crea/img/object_technic.png index 66371d50c5e..ac256e463e9 100644 Binary files a/htdocs/theme/bureau2crea/img/object_technic.png and b/htdocs/theme/bureau2crea/img/object_technic.png differ diff --git a/htdocs/theme/bureau2crea/img/object_trip.png b/htdocs/theme/bureau2crea/img/object_trip.png index 7e057afe565..d1a025c8477 100644 Binary files a/htdocs/theme/bureau2crea/img/object_trip.png and b/htdocs/theme/bureau2crea/img/object_trip.png differ diff --git a/htdocs/theme/bureau2crea/img/object_user.png b/htdocs/theme/bureau2crea/img/object_user.png index 02704bd1a57..152fd668c08 100644 Binary files a/htdocs/theme/bureau2crea/img/object_user.png and b/htdocs/theme/bureau2crea/img/object_user.png differ diff --git a/htdocs/theme/bureau2crea/img/off.png b/htdocs/theme/bureau2crea/img/off.png index 38541c3d4b7..9e28e0fa91e 100644 Binary files a/htdocs/theme/bureau2crea/img/off.png and b/htdocs/theme/bureau2crea/img/off.png differ diff --git a/htdocs/theme/bureau2crea/img/on.png b/htdocs/theme/bureau2crea/img/on.png index e93440482ce..72e87ecaeb4 100644 Binary files a/htdocs/theme/bureau2crea/img/on.png and b/htdocs/theme/bureau2crea/img/on.png differ diff --git a/htdocs/theme/bureau2crea/img/pdf2.png b/htdocs/theme/bureau2crea/img/pdf2.png index 407fa968323..975d8098993 100644 Binary files a/htdocs/theme/bureau2crea/img/pdf2.png and b/htdocs/theme/bureau2crea/img/pdf2.png differ diff --git a/htdocs/theme/bureau2crea/img/pdf3.png b/htdocs/theme/bureau2crea/img/pdf3.png index f8058fa94b7..f053591bf2d 100644 Binary files a/htdocs/theme/bureau2crea/img/pdf3.png and b/htdocs/theme/bureau2crea/img/pdf3.png differ diff --git a/htdocs/theme/bureau2crea/img/play.png b/htdocs/theme/bureau2crea/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/bureau2crea/img/play.png and b/htdocs/theme/bureau2crea/img/play.png differ diff --git a/htdocs/theme/bureau2crea/img/previous.png b/htdocs/theme/bureau2crea/img/previous.png index ed929ee0c05..bff23a0f55d 100644 Binary files a/htdocs/theme/bureau2crea/img/previous.png and b/htdocs/theme/bureau2crea/img/previous.png differ diff --git a/htdocs/theme/bureau2crea/img/printer.png b/htdocs/theme/bureau2crea/img/printer.png index 2521942af43..774686d23be 100644 Binary files a/htdocs/theme/bureau2crea/img/printer.png and b/htdocs/theme/bureau2crea/img/printer.png differ diff --git a/htdocs/theme/bureau2crea/img/puce.png b/htdocs/theme/bureau2crea/img/puce.png index 922aff295cf..0bd4bd51023 100644 Binary files a/htdocs/theme/bureau2crea/img/puce.png and b/htdocs/theme/bureau2crea/img/puce.png differ diff --git a/htdocs/theme/bureau2crea/img/recent.png b/htdocs/theme/bureau2crea/img/recent.png index e721f977f33..a3405497f03 100644 Binary files a/htdocs/theme/bureau2crea/img/recent.png and b/htdocs/theme/bureau2crea/img/recent.png differ diff --git a/htdocs/theme/bureau2crea/img/redstar.png b/htdocs/theme/bureau2crea/img/redstar.png index 83ed4f4ae0d..ce7b207978a 100644 Binary files a/htdocs/theme/bureau2crea/img/redstar.png and b/htdocs/theme/bureau2crea/img/redstar.png differ diff --git a/htdocs/theme/bureau2crea/img/refresh.png b/htdocs/theme/bureau2crea/img/refresh.png index fdd0a2920e0..edc14adcd23 100644 Binary files a/htdocs/theme/bureau2crea/img/refresh.png and b/htdocs/theme/bureau2crea/img/refresh.png differ diff --git a/htdocs/theme/bureau2crea/img/reload.png b/htdocs/theme/bureau2crea/img/reload.png index 9efecb045f8..1e638197612 100644 Binary files a/htdocs/theme/bureau2crea/img/reload.png and b/htdocs/theme/bureau2crea/img/reload.png differ diff --git a/htdocs/theme/bureau2crea/img/rightarrow.png b/htdocs/theme/bureau2crea/img/rightarrow.png index 2ea37440ecd..2c479d9453b 100644 Binary files a/htdocs/theme/bureau2crea/img/rightarrow.png and b/htdocs/theme/bureau2crea/img/rightarrow.png differ diff --git a/htdocs/theme/bureau2crea/img/search.png b/htdocs/theme/bureau2crea/img/search.png index 8fc0005e69a..97f4801c921 100644 Binary files a/htdocs/theme/bureau2crea/img/search.png and b/htdocs/theme/bureau2crea/img/search.png differ diff --git a/htdocs/theme/bureau2crea/img/searchclear.png b/htdocs/theme/bureau2crea/img/searchclear.png index 45626e3be11..56fb7f1de87 100644 Binary files a/htdocs/theme/bureau2crea/img/searchclear.png and b/htdocs/theme/bureau2crea/img/searchclear.png differ diff --git a/htdocs/theme/bureau2crea/img/setup.png b/htdocs/theme/bureau2crea/img/setup.png index d386c8dce4a..ad9a58fe0d3 100644 Binary files a/htdocs/theme/bureau2crea/img/setup.png and b/htdocs/theme/bureau2crea/img/setup.png differ diff --git a/htdocs/theme/bureau2crea/img/sort_asc.png b/htdocs/theme/bureau2crea/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/bureau2crea/img/sort_asc.png and b/htdocs/theme/bureau2crea/img/sort_asc.png differ diff --git a/htdocs/theme/bureau2crea/img/sort_asc_disabled.png b/htdocs/theme/bureau2crea/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/bureau2crea/img/sort_asc_disabled.png and b/htdocs/theme/bureau2crea/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/bureau2crea/img/sort_desc.png b/htdocs/theme/bureau2crea/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/bureau2crea/img/sort_desc.png and b/htdocs/theme/bureau2crea/img/sort_desc.png differ diff --git a/htdocs/theme/bureau2crea/img/sort_desc_disabled.png b/htdocs/theme/bureau2crea/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/bureau2crea/img/sort_desc_disabled.png and b/htdocs/theme/bureau2crea/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/bureau2crea/img/split.png b/htdocs/theme/bureau2crea/img/split.png index a99bbcf26e7..50b6324c334 100644 Binary files a/htdocs/theme/bureau2crea/img/split.png and b/htdocs/theme/bureau2crea/img/split.png differ diff --git a/htdocs/theme/bureau2crea/img/star.png b/htdocs/theme/bureau2crea/img/star.png index 6c090d198e5..81feace1c30 100644 Binary files a/htdocs/theme/bureau2crea/img/star.png and b/htdocs/theme/bureau2crea/img/star.png differ diff --git a/htdocs/theme/bureau2crea/img/stats.png b/htdocs/theme/bureau2crea/img/stats.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/bureau2crea/img/statut0.png b/htdocs/theme/bureau2crea/img/statut0.png index f3aedc87cba..196f4f53c7d 100644 Binary files a/htdocs/theme/bureau2crea/img/statut0.png and b/htdocs/theme/bureau2crea/img/statut0.png differ diff --git a/htdocs/theme/bureau2crea/img/statut1.png b/htdocs/theme/bureau2crea/img/statut1.png index c3f62f5a773..774b3e4bd54 100644 Binary files a/htdocs/theme/bureau2crea/img/statut1.png and b/htdocs/theme/bureau2crea/img/statut1.png differ diff --git a/htdocs/theme/bureau2crea/img/statut3.png b/htdocs/theme/bureau2crea/img/statut3.png index 596f078ca8b..9ce49b93476 100644 Binary files a/htdocs/theme/bureau2crea/img/statut3.png and b/htdocs/theme/bureau2crea/img/statut3.png differ diff --git a/htdocs/theme/bureau2crea/img/statut4.png b/htdocs/theme/bureau2crea/img/statut4.png index b12bc0d000c..e4f42ac6d53 100644 Binary files a/htdocs/theme/bureau2crea/img/statut4.png and b/htdocs/theme/bureau2crea/img/statut4.png differ diff --git a/htdocs/theme/bureau2crea/img/statut5.png b/htdocs/theme/bureau2crea/img/statut5.png index 1a110285634..774b3e4bd54 100644 Binary files a/htdocs/theme/bureau2crea/img/statut5.png and b/htdocs/theme/bureau2crea/img/statut5.png differ diff --git a/htdocs/theme/bureau2crea/img/statut6.png b/htdocs/theme/bureau2crea/img/statut6.png index c3d6619e237..e4f42ac6d53 100644 Binary files a/htdocs/theme/bureau2crea/img/statut6.png and b/htdocs/theme/bureau2crea/img/statut6.png differ diff --git a/htdocs/theme/bureau2crea/img/statut7.png b/htdocs/theme/bureau2crea/img/statut7.png index 160a4b6fb56..b391da08db5 100644 Binary files a/htdocs/theme/bureau2crea/img/statut7.png and b/htdocs/theme/bureau2crea/img/statut7.png differ diff --git a/htdocs/theme/bureau2crea/img/statut8.png b/htdocs/theme/bureau2crea/img/statut8.png old mode 100755 new mode 100644 index 4d8f59be1c2..c24d4a9dac2 Binary files a/htdocs/theme/bureau2crea/img/statut8.png and b/htdocs/theme/bureau2crea/img/statut8.png differ diff --git a/htdocs/theme/bureau2crea/img/statut9.png b/htdocs/theme/bureau2crea/img/statut9.png index 5401cf9b03d..94b6dabf265 100644 Binary files a/htdocs/theme/bureau2crea/img/statut9.png and b/htdocs/theme/bureau2crea/img/statut9.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm-1.png b/htdocs/theme/bureau2crea/img/stcomm-1.png index e18aa77d893..2641cfa6a9d 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm-1.png and b/htdocs/theme/bureau2crea/img/stcomm-1.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm-1_grayed.png b/htdocs/theme/bureau2crea/img/stcomm-1_grayed.png index 20a7219535e..5942e6c72af 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm-1_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm-1_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm0.png b/htdocs/theme/bureau2crea/img/stcomm0.png index ffddcfdfa33..d3e0d1853d3 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm0.png and b/htdocs/theme/bureau2crea/img/stcomm0.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm0_grayed.png b/htdocs/theme/bureau2crea/img/stcomm0_grayed.png index a92e1558506..9016db48b02 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm0_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm0_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm1.png b/htdocs/theme/bureau2crea/img/stcomm1.png index 275b0eeb63e..40618af47ce 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm1.png and b/htdocs/theme/bureau2crea/img/stcomm1.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm1_grayed.png b/htdocs/theme/bureau2crea/img/stcomm1_grayed.png index 98ed423aa9e..367a55921e4 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm1_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm1_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm2.png b/htdocs/theme/bureau2crea/img/stcomm2.png index e9c0557e762..f9f3f1d853e 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm2.png and b/htdocs/theme/bureau2crea/img/stcomm2.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm2_grayed.png b/htdocs/theme/bureau2crea/img/stcomm2_grayed.png index 0f2a4332cfc..f667e3573d0 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm2_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm2_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm3.png b/htdocs/theme/bureau2crea/img/stcomm3.png index cbced22fb28..24cd66d3457 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm3.png and b/htdocs/theme/bureau2crea/img/stcomm3.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm3_grayed.png b/htdocs/theme/bureau2crea/img/stcomm3_grayed.png index fc80eb2aebd..81a14c1e482 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm3_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm3_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm4.png b/htdocs/theme/bureau2crea/img/stcomm4.png index c839a8acec5..3e26b4d06ed 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm4.png and b/htdocs/theme/bureau2crea/img/stcomm4.png differ diff --git a/htdocs/theme/bureau2crea/img/stcomm4_grayed.png b/htdocs/theme/bureau2crea/img/stcomm4_grayed.png index 4935499d917..4271aafb6ce 100644 Binary files a/htdocs/theme/bureau2crea/img/stcomm4_grayed.png and b/htdocs/theme/bureau2crea/img/stcomm4_grayed.png differ diff --git a/htdocs/theme/bureau2crea/img/tab_background.png b/htdocs/theme/bureau2crea/img/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/bureau2crea/img/tab_background.png and b/htdocs/theme/bureau2crea/img/tab_background.png differ diff --git a/htdocs/theme/bureau2crea/img/tick.png b/htdocs/theme/bureau2crea/img/tick.png index 29ded7a552a..c899abb9c34 100644 Binary files a/htdocs/theme/bureau2crea/img/tick.png and b/htdocs/theme/bureau2crea/img/tick.png differ diff --git a/htdocs/theme/bureau2crea/img/title.png b/htdocs/theme/bureau2crea/img/title.png index bb1dd5683fa..eb9c329a6a5 100644 Binary files a/htdocs/theme/bureau2crea/img/title.png and b/htdocs/theme/bureau2crea/img/title.png differ diff --git a/htdocs/theme/bureau2crea/img/tmenu.jpg b/htdocs/theme/bureau2crea/img/tmenu.jpg index 46c239d371f..b8ffd399418 100644 Binary files a/htdocs/theme/bureau2crea/img/tmenu.jpg and b/htdocs/theme/bureau2crea/img/tmenu.jpg differ diff --git a/htdocs/theme/bureau2crea/img/tmenu2.jpg b/htdocs/theme/bureau2crea/img/tmenu2.jpg index e5ca3f72414..920e0066341 100644 Binary files a/htdocs/theme/bureau2crea/img/tmenu2.jpg and b/htdocs/theme/bureau2crea/img/tmenu2.jpg differ diff --git a/htdocs/theme/bureau2crea/img/tmenu3.jpg b/htdocs/theme/bureau2crea/img/tmenu3.jpg index dc2434541cf..d42f804b026 100644 Binary files a/htdocs/theme/bureau2crea/img/tmenu3.jpg and b/htdocs/theme/bureau2crea/img/tmenu3.jpg differ diff --git a/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg b/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg index c8fe6d0aff2..e1efd44376e 100644 Binary files a/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg and b/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg differ diff --git a/htdocs/theme/bureau2crea/img/unlock.png b/htdocs/theme/bureau2crea/img/unlock.png index f3eebc59274..afefaa94d47 100644 Binary files a/htdocs/theme/bureau2crea/img/unlock.png and b/htdocs/theme/bureau2crea/img/unlock.png differ diff --git a/htdocs/theme/bureau2crea/img/uparrow.png b/htdocs/theme/bureau2crea/img/uparrow.png index 0f6d64e936a..5706ca39da4 100644 Binary files a/htdocs/theme/bureau2crea/img/uparrow.png and b/htdocs/theme/bureau2crea/img/uparrow.png differ diff --git a/htdocs/theme/bureau2crea/img/vcard.png b/htdocs/theme/bureau2crea/img/vcard.png index e03026f87fb..315abdf179d 100644 Binary files a/htdocs/theme/bureau2crea/img/vcard.png and b/htdocs/theme/bureau2crea/img/vcard.png differ diff --git a/htdocs/theme/bureau2crea/img/view.png b/htdocs/theme/bureau2crea/img/view.png index 4e0396f7b09..76c1e9f1e6a 100644 Binary files a/htdocs/theme/bureau2crea/img/view.png and b/htdocs/theme/bureau2crea/img/view.png differ diff --git a/htdocs/theme/bureau2crea/img/warning.png b/htdocs/theme/bureau2crea/img/warning.png index 81514897fe6..dfa237a5302 100644 Binary files a/htdocs/theme/bureau2crea/img/warning.png and b/htdocs/theme/bureau2crea/img/warning.png differ diff --git a/htdocs/theme/bureau2crea/thumb.png b/htdocs/theme/bureau2crea/thumb.png index ff2d53c727f..75beae21b09 100644 Binary files a/htdocs/theme/bureau2crea/thumb.png and b/htdocs/theme/bureau2crea/thumb.png differ diff --git a/htdocs/theme/cameleo/img/1downarrow.png b/htdocs/theme/cameleo/img/1downarrow.png index fd3a3ceed9d..1d134ab3e4e 100644 Binary files a/htdocs/theme/cameleo/img/1downarrow.png and b/htdocs/theme/cameleo/img/1downarrow.png differ diff --git a/htdocs/theme/cameleo/img/1downarrow_selected.png b/htdocs/theme/cameleo/img/1downarrow_selected.png index 453fdf12a40..5caf8ead52d 100644 Binary files a/htdocs/theme/cameleo/img/1downarrow_selected.png and b/htdocs/theme/cameleo/img/1downarrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1leftarrow.png b/htdocs/theme/cameleo/img/1leftarrow.png index 123d94357ce..554cdc3d76c 100644 Binary files a/htdocs/theme/cameleo/img/1leftarrow.png and b/htdocs/theme/cameleo/img/1leftarrow.png differ diff --git a/htdocs/theme/cameleo/img/1leftarrow_selected.png b/htdocs/theme/cameleo/img/1leftarrow_selected.png index 123d94357ce..554cdc3d76c 100644 Binary files a/htdocs/theme/cameleo/img/1leftarrow_selected.png and b/htdocs/theme/cameleo/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1rightarrow.png b/htdocs/theme/cameleo/img/1rightarrow.png index 06559cea65f..95fdc377ee9 100644 Binary files a/htdocs/theme/cameleo/img/1rightarrow.png and b/htdocs/theme/cameleo/img/1rightarrow.png differ diff --git a/htdocs/theme/cameleo/img/1rightarrow_selected.png b/htdocs/theme/cameleo/img/1rightarrow_selected.png index 06559cea65f..95fdc377ee9 100644 Binary files a/htdocs/theme/cameleo/img/1rightarrow_selected.png and b/htdocs/theme/cameleo/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1uparrow.png b/htdocs/theme/cameleo/img/1uparrow.png index 392ddf81f77..70ea061dc5e 100644 Binary files a/htdocs/theme/cameleo/img/1uparrow.png and b/htdocs/theme/cameleo/img/1uparrow.png differ diff --git a/htdocs/theme/cameleo/img/1uparrow_selected.png b/htdocs/theme/cameleo/img/1uparrow_selected.png index cf0f50437a6..36d25a408c5 100644 Binary files a/htdocs/theme/cameleo/img/1uparrow_selected.png and b/htdocs/theme/cameleo/img/1uparrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1updownarrow.png b/htdocs/theme/cameleo/img/1updownarrow.png index fd5e5801aea..871ac1c1f29 100644 Binary files a/htdocs/theme/cameleo/img/1updownarrow.png and b/htdocs/theme/cameleo/img/1updownarrow.png differ diff --git a/htdocs/theme/cameleo/img/2.png b/htdocs/theme/cameleo/img/2.png index ad65c580ee7..f592543dd8e 100644 Binary files a/htdocs/theme/cameleo/img/2.png and b/htdocs/theme/cameleo/img/2.png differ diff --git a/htdocs/theme/cameleo/img/addfile.png b/htdocs/theme/cameleo/img/addfile.png index 3bfa627d758..1cb7af0ad8a 100644 Binary files a/htdocs/theme/cameleo/img/addfile.png and b/htdocs/theme/cameleo/img/addfile.png differ diff --git a/htdocs/theme/cameleo/img/banner_02.jpg b/htdocs/theme/cameleo/img/banner_02.jpg index 29e0619e77f..81635fd2a59 100644 Binary files a/htdocs/theme/cameleo/img/banner_02.jpg and b/htdocs/theme/cameleo/img/banner_02.jpg differ diff --git a/htdocs/theme/cameleo/img/bg-bas-rubrique.png b/htdocs/theme/cameleo/img/bg-bas-rubrique.png index 941207d85da..d2fbe3a7a13 100644 Binary files a/htdocs/theme/cameleo/img/bg-bas-rubrique.png and b/htdocs/theme/cameleo/img/bg-bas-rubrique.png differ diff --git a/htdocs/theme/cameleo/img/bg-rubrique.png b/htdocs/theme/cameleo/img/bg-rubrique.png index 6bc08feb211..9abf1dc1459 100644 Binary files a/htdocs/theme/cameleo/img/bg-rubrique.png and b/htdocs/theme/cameleo/img/bg-rubrique.png differ diff --git a/htdocs/theme/cameleo/img/bg-titre-rubrique.png b/htdocs/theme/cameleo/img/bg-titre-rubrique.png index abf662a530b..ad6484fcbe9 100644 Binary files a/htdocs/theme/cameleo/img/bg-titre-rubrique.png and b/htdocs/theme/cameleo/img/bg-titre-rubrique.png differ diff --git a/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg b/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg index 5140e17b284..05e49219bf4 100644 Binary files a/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg and b/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btnBlue.jpg b/htdocs/theme/cameleo/img/bg_btnBlue.jpg index 5ffcea5554d..7409bacab3e 100644 Binary files a/htdocs/theme/cameleo/img/bg_btnBlue.jpg and b/htdocs/theme/cameleo/img/bg_btnBlue.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btnGreen.jpg b/htdocs/theme/cameleo/img/bg_btnGreen.jpg index 8bcabe5a4f5..fc1f52c65d4 100644 Binary files a/htdocs/theme/cameleo/img/bg_btnGreen.jpg and b/htdocs/theme/cameleo/img/bg_btnGreen.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btnGrey.jpg b/htdocs/theme/cameleo/img/bg_btnGrey.jpg index 05b95df748c..48911bf6f13 100644 Binary files a/htdocs/theme/cameleo/img/bg_btnGrey.jpg and b/htdocs/theme/cameleo/img/bg_btnGrey.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btnRed.jpg b/htdocs/theme/cameleo/img/bg_btnRed.jpg index 9e309245c43..c8c7f55c85d 100644 Binary files a/htdocs/theme/cameleo/img/bg_btnRed.jpg and b/htdocs/theme/cameleo/img/bg_btnRed.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btn_blue.jpg b/htdocs/theme/cameleo/img/bg_btn_blue.jpg index b09d2bb5a5a..563cebdc3e7 100644 Binary files a/htdocs/theme/cameleo/img/bg_btn_blue.jpg and b/htdocs/theme/cameleo/img/bg_btn_blue.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btn_green.jpg b/htdocs/theme/cameleo/img/bg_btn_green.jpg index 513f0eb0fd8..d29a1bb0d61 100644 Binary files a/htdocs/theme/cameleo/img/bg_btn_green.jpg and b/htdocs/theme/cameleo/img/bg_btn_green.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_btn_red.jpg b/htdocs/theme/cameleo/img/bg_btn_red.jpg index ad8da842c7c..fb11e4f2daf 100644 Binary files a/htdocs/theme/cameleo/img/bg_btn_red.jpg and b/htdocs/theme/cameleo/img/bg_btn_red.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg b/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg index 6d2ac8ce0a9..9666d52336a 100644 Binary files a/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg and b/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_leftCategorie.jpg b/htdocs/theme/cameleo/img/bg_leftCategorie.jpg index 00071c4ec42..f152d6d083f 100644 Binary files a/htdocs/theme/cameleo/img/bg_leftCategorie.jpg and b/htdocs/theme/cameleo/img/bg_leftCategorie.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg b/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg index 11bfc4d9f69..1a26e37a99b 100644 Binary files a/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg and b/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_leftMenu.jpg b/htdocs/theme/cameleo/img/bg_leftMenu.jpg index 117cdc60a46..03bca88e2ae 100644 Binary files a/htdocs/theme/cameleo/img/bg_leftMenu.jpg and b/htdocs/theme/cameleo/img/bg_leftMenu.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_leftTable.jpg b/htdocs/theme/cameleo/img/bg_leftTable.jpg index 15a3386318b..36d6f9d00d2 100644 Binary files a/htdocs/theme/cameleo/img/bg_leftTable.jpg and b/htdocs/theme/cameleo/img/bg_leftTable.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg b/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg index dc62a41efac..419c8ce6bf0 100644 Binary files a/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg and b/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_other_table.jpg b/htdocs/theme/cameleo/img/bg_other_table.jpg index 086a46a8613..f4409cbaae5 100644 Binary files a/htdocs/theme/cameleo/img/bg_other_table.jpg and b/htdocs/theme/cameleo/img/bg_other_table.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg b/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg index 7df7fd0ab02..fd09bb40da0 100644 Binary files a/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg and b/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg b/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg index 12accbf3ccb..ca483b7b295 100644 Binary files a/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg and b/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg b/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg index d7324957df6..1e41b87c6ea 100644 Binary files a/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg and b/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg b/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg index 1d012589854..3df9a20bcd5 100644 Binary files a/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg and b/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu.jpg b/htdocs/theme/cameleo/img/bg_tmenu.jpg index 90819e98bc8..95fc9868971 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenu.jpg and b/htdocs/theme/cameleo/img/bg_tmenu.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg b/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg index 0180a4b5d19..af8c5f9e49c 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg and b/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg b/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg index cf1f469dbe4..fc9152e2b0d 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg and b/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg b/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg index 5aab5a25799..ab0be94ee9c 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg and b/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg b/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg index 24eb92fd4cd..3e488176929 100644 Binary files a/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg and b/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_vmenu.jpg b/htdocs/theme/cameleo/img/bg_vmenu.jpg index df83d4bd687..84d883d8d69 100644 Binary files a/htdocs/theme/cameleo/img/bg_vmenu.jpg and b/htdocs/theme/cameleo/img/bg_vmenu.jpg differ diff --git a/htdocs/theme/cameleo/img/bg_working_table.jpg b/htdocs/theme/cameleo/img/bg_working_table.jpg index cdd8d9b2c26..881e65fcb7b 100644 Binary files a/htdocs/theme/cameleo/img/bg_working_table.jpg and b/htdocs/theme/cameleo/img/bg_working_table.jpg differ diff --git a/htdocs/theme/cameleo/img/body_bg.jpg b/htdocs/theme/cameleo/img/body_bg.jpg index ddde2c5f5aa..0480bfdc738 100644 Binary files a/htdocs/theme/cameleo/img/body_bg.jpg and b/htdocs/theme/cameleo/img/body_bg.jpg differ diff --git a/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png b/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png index 8f61b220c59..10e03744ace 100644 Binary files a/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png and b/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png differ diff --git a/htdocs/theme/cameleo/img/bouton/round_black_tr.png b/htdocs/theme/cameleo/img/bouton/round_black_tr.png index f27609ae8ee..f0ea7d10c5c 100644 Binary files a/htdocs/theme/cameleo/img/bouton/round_black_tr.png and b/htdocs/theme/cameleo/img/bouton/round_black_tr.png differ diff --git a/htdocs/theme/cameleo/img/bouton_edit.png b/htdocs/theme/cameleo/img/bouton_edit.png index a29e064933a..3d36eb0523f 100644 Binary files a/htdocs/theme/cameleo/img/bouton_edit.png and b/htdocs/theme/cameleo/img/bouton_edit.png differ diff --git a/htdocs/theme/cameleo/img/calc.png b/htdocs/theme/cameleo/img/calc.png index d3bd2bbc824..5e6471408d8 100644 Binary files a/htdocs/theme/cameleo/img/calc.png and b/htdocs/theme/cameleo/img/calc.png differ diff --git a/htdocs/theme/cameleo/img/calendar.png b/htdocs/theme/cameleo/img/calendar.png index 90829a353c3..bbe6c27f041 100644 Binary files a/htdocs/theme/cameleo/img/calendar.png and b/htdocs/theme/cameleo/img/calendar.png differ diff --git a/htdocs/theme/cameleo/img/call.png b/htdocs/theme/cameleo/img/call.png index 8315c57d61d..ddfc1b7bd90 100644 Binary files a/htdocs/theme/cameleo/img/call.png and b/htdocs/theme/cameleo/img/call.png differ diff --git a/htdocs/theme/cameleo/img/call_out.png b/htdocs/theme/cameleo/img/call_out.png index bf972d8b1ae..b5a22eb827b 100644 Binary files a/htdocs/theme/cameleo/img/call_out.png and b/htdocs/theme/cameleo/img/call_out.png differ diff --git a/htdocs/theme/cameleo/img/close.png b/htdocs/theme/cameleo/img/close.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/cameleo/img/close.png and b/htdocs/theme/cameleo/img/close.png differ diff --git a/htdocs/theme/cameleo/img/close_title.png b/htdocs/theme/cameleo/img/close_title.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/cameleo/img/close_title.png and b/htdocs/theme/cameleo/img/close_title.png differ diff --git a/htdocs/theme/cameleo/img/delete.png b/htdocs/theme/cameleo/img/delete.png index 221cd3c76b9..8ad73597be7 100644 Binary files a/htdocs/theme/cameleo/img/delete.png and b/htdocs/theme/cameleo/img/delete.png differ diff --git a/htdocs/theme/cameleo/img/detail.png b/htdocs/theme/cameleo/img/detail.png index 2d31ec2202e..05562bef842 100644 Binary files a/htdocs/theme/cameleo/img/detail.png and b/htdocs/theme/cameleo/img/detail.png differ diff --git a/htdocs/theme/cameleo/img/disable.png b/htdocs/theme/cameleo/img/disable.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/cameleo/img/disable.png and b/htdocs/theme/cameleo/img/disable.png differ diff --git a/htdocs/theme/cameleo/img/edit_add.png b/htdocs/theme/cameleo/img/edit_add.png index f6e67164208..ae205e9d770 100644 Binary files a/htdocs/theme/cameleo/img/edit_add.png and b/htdocs/theme/cameleo/img/edit_add.png differ diff --git a/htdocs/theme/cameleo/img/edit_remove.png b/htdocs/theme/cameleo/img/edit_remove.png index 0c7ca54fa1f..bc4bdb360fa 100644 Binary files a/htdocs/theme/cameleo/img/edit_remove.png and b/htdocs/theme/cameleo/img/edit_remove.png differ diff --git a/htdocs/theme/cameleo/img/editdelete.png b/htdocs/theme/cameleo/img/editdelete.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/cameleo/img/editdelete.png and b/htdocs/theme/cameleo/img/editdelete.png differ diff --git a/htdocs/theme/cameleo/img/file.png b/htdocs/theme/cameleo/img/file.png index 98bc98d2f1f..73c66e9b2b3 100644 Binary files a/htdocs/theme/cameleo/img/file.png and b/htdocs/theme/cameleo/img/file.png differ diff --git a/htdocs/theme/cameleo/img/filenew.png b/htdocs/theme/cameleo/img/filenew.png index 1f6581389d1..8680cce82bf 100644 Binary files a/htdocs/theme/cameleo/img/filenew.png and b/htdocs/theme/cameleo/img/filenew.png differ diff --git a/htdocs/theme/cameleo/img/filter.png b/htdocs/theme/cameleo/img/filter.png index 4baa3a3be8e..917715107bd 100644 Binary files a/htdocs/theme/cameleo/img/filter.png and b/htdocs/theme/cameleo/img/filter.png differ diff --git a/htdocs/theme/cameleo/img/folder-open.png b/htdocs/theme/cameleo/img/folder-open.png index 1687cd1b536..1db8369b3d5 100644 Binary files a/htdocs/theme/cameleo/img/folder-open.png and b/htdocs/theme/cameleo/img/folder-open.png differ diff --git a/htdocs/theme/cameleo/img/folder.png b/htdocs/theme/cameleo/img/folder.png index 908a6df9348..04a24af2e22 100644 Binary files a/htdocs/theme/cameleo/img/folder.png and b/htdocs/theme/cameleo/img/folder.png differ diff --git a/htdocs/theme/cameleo/img/grip.png b/htdocs/theme/cameleo/img/grip.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/cameleo/img/grip.png and b/htdocs/theme/cameleo/img/grip.png differ diff --git a/htdocs/theme/cameleo/img/grip_title.png b/htdocs/theme/cameleo/img/grip_title.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/cameleo/img/grip_title.png and b/htdocs/theme/cameleo/img/grip_title.png differ diff --git a/htdocs/theme/cameleo/img/headbg.jpg b/htdocs/theme/cameleo/img/headbg.jpg index 7d1374e1fc9..160821354cc 100644 Binary files a/htdocs/theme/cameleo/img/headbg.jpg and b/htdocs/theme/cameleo/img/headbg.jpg differ diff --git a/htdocs/theme/cameleo/img/headbg2.jpg b/htdocs/theme/cameleo/img/headbg2.jpg index 7917abd9c07..0bc44f0ea99 100644 Binary files a/htdocs/theme/cameleo/img/headbg2.jpg and b/htdocs/theme/cameleo/img/headbg2.jpg differ diff --git a/htdocs/theme/cameleo/img/help.png b/htdocs/theme/cameleo/img/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/cameleo/img/help.png and b/htdocs/theme/cameleo/img/help.png differ diff --git a/htdocs/theme/cameleo/img/high.png b/htdocs/theme/cameleo/img/high.png index f893de7abf3..c0eaee6542f 100644 Binary files a/htdocs/theme/cameleo/img/high.png and b/htdocs/theme/cameleo/img/high.png differ diff --git a/htdocs/theme/cameleo/img/history.png b/htdocs/theme/cameleo/img/history.png index 932921c1f4c..0fa4283476b 100644 Binary files a/htdocs/theme/cameleo/img/history.png and b/htdocs/theme/cameleo/img/history.png differ diff --git a/htdocs/theme/cameleo/img/indent1.png b/htdocs/theme/cameleo/img/indent1.png index 52ebb2bd738..09695ac754f 100644 Binary files a/htdocs/theme/cameleo/img/indent1.png and b/htdocs/theme/cameleo/img/indent1.png differ diff --git a/htdocs/theme/cameleo/img/info.png b/htdocs/theme/cameleo/img/info.png index 16f932283ad..db8ba04fac5 100644 Binary files a/htdocs/theme/cameleo/img/info.png and b/htdocs/theme/cameleo/img/info.png differ diff --git a/htdocs/theme/cameleo/img/lock.png b/htdocs/theme/cameleo/img/lock.png index 8c2e2cbdb09..3d99cf1eaef 100644 Binary files a/htdocs/theme/cameleo/img/lock.png and b/htdocs/theme/cameleo/img/lock.png differ diff --git a/htdocs/theme/cameleo/img/login_background.png b/htdocs/theme/cameleo/img/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/cameleo/img/login_background.png and b/htdocs/theme/cameleo/img/login_background.png differ diff --git a/htdocs/theme/cameleo/img/logout.png b/htdocs/theme/cameleo/img/logout.png index cfff7ba61d1..84bd94e7b81 100644 Binary files a/htdocs/theme/cameleo/img/logout.png and b/htdocs/theme/cameleo/img/logout.png differ diff --git a/htdocs/theme/cameleo/img/menus/agenda.png b/htdocs/theme/cameleo/img/menus/agenda.png index 2bea3152a10..866037c9b54 100644 Binary files a/htdocs/theme/cameleo/img/menus/agenda.png and b/htdocs/theme/cameleo/img/menus/agenda.png differ diff --git a/htdocs/theme/cameleo/img/menus/bank.png b/htdocs/theme/cameleo/img/menus/bank.png index 225df251041..9c6300eae32 100644 Binary files a/htdocs/theme/cameleo/img/menus/bank.png and b/htdocs/theme/cameleo/img/menus/bank.png differ diff --git a/htdocs/theme/cameleo/img/menus/commercial.png b/htdocs/theme/cameleo/img/menus/commercial.png index e520f7eb71e..efc1b3f0608 100644 Binary files a/htdocs/theme/cameleo/img/menus/commercial.png and b/htdocs/theme/cameleo/img/menus/commercial.png differ diff --git a/htdocs/theme/cameleo/img/menus/externalsite.png b/htdocs/theme/cameleo/img/menus/externalsite.png index 73fef8ae4c8..0bf9138d463 100644 Binary files a/htdocs/theme/cameleo/img/menus/externalsite.png and b/htdocs/theme/cameleo/img/menus/externalsite.png differ diff --git a/htdocs/theme/cameleo/img/menus/footer_bg.jpg b/htdocs/theme/cameleo/img/menus/footer_bg.jpg index ab5511b57f1..7319c16f9af 100644 Binary files a/htdocs/theme/cameleo/img/menus/footer_bg.jpg and b/htdocs/theme/cameleo/img/menus/footer_bg.jpg differ diff --git a/htdocs/theme/cameleo/img/menus/generic3.png b/htdocs/theme/cameleo/img/menus/generic3.png index d3ed4fa89b3..e22f73aa6f9 100644 Binary files a/htdocs/theme/cameleo/img/menus/generic3.png and b/htdocs/theme/cameleo/img/menus/generic3.png differ diff --git a/htdocs/theme/cameleo/img/menus/holiday.png b/htdocs/theme/cameleo/img/menus/holiday.png index 27b653d93ba..42c519aa63d 100644 Binary files a/htdocs/theme/cameleo/img/menus/holiday.png and b/htdocs/theme/cameleo/img/menus/holiday.png differ diff --git a/htdocs/theme/cameleo/img/menus/home.png b/htdocs/theme/cameleo/img/menus/home.png index eec3240070b..f4d0d917d1f 100644 Binary files a/htdocs/theme/cameleo/img/menus/home.png and b/htdocs/theme/cameleo/img/menus/home.png differ diff --git a/htdocs/theme/cameleo/img/menus/mail.png b/htdocs/theme/cameleo/img/menus/mail.png index dab5feda5cd..d715ec7810c 100644 Binary files a/htdocs/theme/cameleo/img/menus/mail.png and b/htdocs/theme/cameleo/img/menus/mail.png differ diff --git a/htdocs/theme/cameleo/img/menus/products.png b/htdocs/theme/cameleo/img/menus/products.png index d1081185c44..6f5f45269ee 100644 Binary files a/htdocs/theme/cameleo/img/menus/products.png and b/htdocs/theme/cameleo/img/menus/products.png differ diff --git a/htdocs/theme/cameleo/img/menus/project.png b/htdocs/theme/cameleo/img/menus/project.png index 5bc0f86b4be..882235d2cd3 100644 Binary files a/htdocs/theme/cameleo/img/menus/project.png and b/htdocs/theme/cameleo/img/menus/project.png differ diff --git a/htdocs/theme/cameleo/img/menus/shop.png b/htdocs/theme/cameleo/img/menus/shop.png index 89627d8b332..efd6859ab60 100644 Binary files a/htdocs/theme/cameleo/img/menus/shop.png and b/htdocs/theme/cameleo/img/menus/shop.png differ diff --git a/htdocs/theme/cameleo/img/menus/tab_background.png b/htdocs/theme/cameleo/img/menus/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/cameleo/img/menus/tab_background.png and b/htdocs/theme/cameleo/img/menus/tab_background.png differ diff --git a/htdocs/theme/cameleo/img/menus/tools.png b/htdocs/theme/cameleo/img/menus/tools.png index 17215ec5899..c053f660ebf 100644 Binary files a/htdocs/theme/cameleo/img/menus/tools.png and b/htdocs/theme/cameleo/img/menus/tools.png differ diff --git a/htdocs/theme/cameleo/img/menus/trtitle.png b/htdocs/theme/cameleo/img/menus/trtitle.png index e4fe4ffe1a6..29b694864e5 100644 Binary files a/htdocs/theme/cameleo/img/menus/trtitle.png and b/htdocs/theme/cameleo/img/menus/trtitle.png differ diff --git a/htdocs/theme/cameleo/img/next.png b/htdocs/theme/cameleo/img/next.png index dc8fa61930b..aff8f9e2ca5 100644 Binary files a/htdocs/theme/cameleo/img/next.png and b/htdocs/theme/cameleo/img/next.png differ diff --git a/htdocs/theme/cameleo/img/object_account.png b/htdocs/theme/cameleo/img/object_account.png index 3b9c74f76ca..bc85bd73f83 100644 Binary files a/htdocs/theme/cameleo/img/object_account.png and b/htdocs/theme/cameleo/img/object_account.png differ diff --git a/htdocs/theme/cameleo/img/object_action.png b/htdocs/theme/cameleo/img/object_action.png index f8e424b354d..3b964b907dc 100644 Binary files a/htdocs/theme/cameleo/img/object_action.png and b/htdocs/theme/cameleo/img/object_action.png differ diff --git a/htdocs/theme/cameleo/img/object_action_rdv.png b/htdocs/theme/cameleo/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/cameleo/img/object_action_rdv.png and b/htdocs/theme/cameleo/img/object_action_rdv.png differ diff --git a/htdocs/theme/cameleo/img/object_address.png b/htdocs/theme/cameleo/img/object_address.png index b20734da69a..a4b878966dc 100644 Binary files a/htdocs/theme/cameleo/img/object_address.png and b/htdocs/theme/cameleo/img/object_address.png differ diff --git a/htdocs/theme/cameleo/img/object_barcode.png b/htdocs/theme/cameleo/img/object_barcode.png index 4eb6082ec31..9241513f0b8 100644 Binary files a/htdocs/theme/cameleo/img/object_barcode.png and b/htdocs/theme/cameleo/img/object_barcode.png differ diff --git a/htdocs/theme/cameleo/img/object_bill.png b/htdocs/theme/cameleo/img/object_bill.png index e1cb50de2e6..277b6ab3233 100644 Binary files a/htdocs/theme/cameleo/img/object_bill.png and b/htdocs/theme/cameleo/img/object_bill.png differ diff --git a/htdocs/theme/cameleo/img/object_billa.png b/htdocs/theme/cameleo/img/object_billa.png index da4e4e8d5d9..2589f34bfed 100644 Binary files a/htdocs/theme/cameleo/img/object_billa.png and b/htdocs/theme/cameleo/img/object_billa.png differ diff --git a/htdocs/theme/cameleo/img/object_billd.png b/htdocs/theme/cameleo/img/object_billd.png index 11aa959cc43..201dc9057ae 100644 Binary files a/htdocs/theme/cameleo/img/object_billd.png and b/htdocs/theme/cameleo/img/object_billd.png differ diff --git a/htdocs/theme/cameleo/img/object_billr.png b/htdocs/theme/cameleo/img/object_billr.png index e933aebd65d..18b8701685e 100644 Binary files a/htdocs/theme/cameleo/img/object_billr.png and b/htdocs/theme/cameleo/img/object_billr.png differ diff --git a/htdocs/theme/cameleo/img/object_book.png b/htdocs/theme/cameleo/img/object_book.png index 6df91021589..cbbc05e8e72 100644 Binary files a/htdocs/theme/cameleo/img/object_book.png and b/htdocs/theme/cameleo/img/object_book.png differ diff --git a/htdocs/theme/cameleo/img/object_bookmark.png b/htdocs/theme/cameleo/img/object_bookmark.png index 1a6af792525..a78697bdc3b 100644 Binary files a/htdocs/theme/cameleo/img/object_bookmark.png and b/htdocs/theme/cameleo/img/object_bookmark.png differ diff --git a/htdocs/theme/cameleo/img/object_calendar.png b/htdocs/theme/cameleo/img/object_calendar.png index ec670d8857b..c647b7f998d 100644 Binary files a/htdocs/theme/cameleo/img/object_calendar.png and b/htdocs/theme/cameleo/img/object_calendar.png differ diff --git a/htdocs/theme/cameleo/img/object_category-expanded.png b/htdocs/theme/cameleo/img/object_category-expanded.png index 330d649a2b8..af943c376e6 100644 Binary files a/htdocs/theme/cameleo/img/object_category-expanded.png and b/htdocs/theme/cameleo/img/object_category-expanded.png differ diff --git a/htdocs/theme/cameleo/img/object_category.png b/htdocs/theme/cameleo/img/object_category.png index 5bf3c91df8d..c7e79d4d408 100644 Binary files a/htdocs/theme/cameleo/img/object_category.png and b/htdocs/theme/cameleo/img/object_category.png differ diff --git a/htdocs/theme/cameleo/img/object_commercial.png b/htdocs/theme/cameleo/img/object_commercial.png index 1af9828796b..ad1519f111c 100644 Binary files a/htdocs/theme/cameleo/img/object_commercial.png and b/htdocs/theme/cameleo/img/object_commercial.png differ diff --git a/htdocs/theme/cameleo/img/object_company.png b/htdocs/theme/cameleo/img/object_company.png index 614d760d936..58021fa506a 100644 Binary files a/htdocs/theme/cameleo/img/object_company.png and b/htdocs/theme/cameleo/img/object_company.png differ diff --git a/htdocs/theme/cameleo/img/object_contact.png b/htdocs/theme/cameleo/img/object_contact.png index 17926656455..e98a7e367e2 100644 Binary files a/htdocs/theme/cameleo/img/object_contact.png and b/htdocs/theme/cameleo/img/object_contact.png differ diff --git a/htdocs/theme/cameleo/img/object_contact_all.png b/htdocs/theme/cameleo/img/object_contact_all.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/cameleo/img/object_contact_all.png and b/htdocs/theme/cameleo/img/object_contact_all.png differ diff --git a/htdocs/theme/cameleo/img/object_contract.png b/htdocs/theme/cameleo/img/object_contract.png index 97e51f9f800..78af93d559f 100644 Binary files a/htdocs/theme/cameleo/img/object_contract.png and b/htdocs/theme/cameleo/img/object_contract.png differ diff --git a/htdocs/theme/cameleo/img/object_cron.png b/htdocs/theme/cameleo/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/cameleo/img/object_cron.png and b/htdocs/theme/cameleo/img/object_cron.png differ diff --git a/htdocs/theme/cameleo/img/object_dir.png b/htdocs/theme/cameleo/img/object_dir.png index f02c3d8f2a0..7324bca0143 100644 Binary files a/htdocs/theme/cameleo/img/object_dir.png and b/htdocs/theme/cameleo/img/object_dir.png differ diff --git a/htdocs/theme/cameleo/img/object_email.png b/htdocs/theme/cameleo/img/object_email.png index b3c2aee69e1..5a92241f7e7 100644 Binary files a/htdocs/theme/cameleo/img/object_email.png and b/htdocs/theme/cameleo/img/object_email.png differ diff --git a/htdocs/theme/cameleo/img/object_energie.png b/htdocs/theme/cameleo/img/object_energie.png index 572c80b8a5b..27b3b52f2c6 100644 Binary files a/htdocs/theme/cameleo/img/object_energie.png and b/htdocs/theme/cameleo/img/object_energie.png differ diff --git a/htdocs/theme/cameleo/img/object_event.png b/htdocs/theme/cameleo/img/object_event.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/cameleo/img/object_event.png and b/htdocs/theme/cameleo/img/object_event.png differ diff --git a/htdocs/theme/cameleo/img/object_generic.png b/htdocs/theme/cameleo/img/object_generic.png index 330d39ef019..caadc78e7d9 100644 Binary files a/htdocs/theme/cameleo/img/object_generic.png and b/htdocs/theme/cameleo/img/object_generic.png differ diff --git a/htdocs/theme/cameleo/img/object_globe.png b/htdocs/theme/cameleo/img/object_globe.png index f3fa11be499..701e24b1c46 100644 Binary files a/htdocs/theme/cameleo/img/object_globe.png and b/htdocs/theme/cameleo/img/object_globe.png differ diff --git a/htdocs/theme/cameleo/img/object_group.png b/htdocs/theme/cameleo/img/object_group.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/cameleo/img/object_group.png and b/htdocs/theme/cameleo/img/object_group.png differ diff --git a/htdocs/theme/cameleo/img/object_holiday.png b/htdocs/theme/cameleo/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/cameleo/img/object_holiday.png and b/htdocs/theme/cameleo/img/object_holiday.png differ diff --git a/htdocs/theme/cameleo/img/object_intervention.png b/htdocs/theme/cameleo/img/object_intervention.png index a1bb5f1203c..9b015af6f6d 100644 Binary files a/htdocs/theme/cameleo/img/object_intervention.png and b/htdocs/theme/cameleo/img/object_intervention.png differ diff --git a/htdocs/theme/cameleo/img/object_invoice.png b/htdocs/theme/cameleo/img/object_invoice.png index e1cb50de2e6..277b6ab3233 100644 Binary files a/htdocs/theme/cameleo/img/object_invoice.png and b/htdocs/theme/cameleo/img/object_invoice.png differ diff --git a/htdocs/theme/cameleo/img/object_label.png b/htdocs/theme/cameleo/img/object_label.png index 913d3cdcd5b..b112af5cf0a 100644 Binary files a/htdocs/theme/cameleo/img/object_label.png and b/htdocs/theme/cameleo/img/object_label.png differ diff --git a/htdocs/theme/cameleo/img/object_lead.png b/htdocs/theme/cameleo/img/object_lead.png index ae1d7deadb7..7324bca0143 100644 Binary files a/htdocs/theme/cameleo/img/object_lead.png and b/htdocs/theme/cameleo/img/object_lead.png differ diff --git a/htdocs/theme/cameleo/img/object_leadpub.png b/htdocs/theme/cameleo/img/object_leadpub.png index 2c7e254c3bc..0e651e5aa5f 100644 Binary files a/htdocs/theme/cameleo/img/object_leadpub.png and b/htdocs/theme/cameleo/img/object_leadpub.png differ diff --git a/htdocs/theme/cameleo/img/object_list.png b/htdocs/theme/cameleo/img/object_list.png index 1396dcc9211..1f49c887555 100644 Binary files a/htdocs/theme/cameleo/img/object_list.png and b/htdocs/theme/cameleo/img/object_list.png differ diff --git a/htdocs/theme/cameleo/img/object_margin.png b/htdocs/theme/cameleo/img/object_margin.png index 13e4b92c9ce..cd0eb4109f7 100644 Binary files a/htdocs/theme/cameleo/img/object_margin.png and b/htdocs/theme/cameleo/img/object_margin.png differ diff --git a/htdocs/theme/cameleo/img/object_opensurvey.png b/htdocs/theme/cameleo/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/cameleo/img/object_opensurvey.png and b/htdocs/theme/cameleo/img/object_opensurvey.png differ diff --git a/htdocs/theme/cameleo/img/object_order.png b/htdocs/theme/cameleo/img/object_order.png index fa3414dbf69..1516cd03433 100644 Binary files a/htdocs/theme/cameleo/img/object_order.png and b/htdocs/theme/cameleo/img/object_order.png differ diff --git a/htdocs/theme/cameleo/img/object_payment.png b/htdocs/theme/cameleo/img/object_payment.png index 10c3066a00c..f8ecf1d144e 100644 Binary files a/htdocs/theme/cameleo/img/object_payment.png and b/htdocs/theme/cameleo/img/object_payment.png differ diff --git a/htdocs/theme/cameleo/img/object_phoning.png b/htdocs/theme/cameleo/img/object_phoning.png index 3a9a37836fb..9f5a14edd23 100644 Binary files a/htdocs/theme/cameleo/img/object_phoning.png and b/htdocs/theme/cameleo/img/object_phoning.png differ diff --git a/htdocs/theme/cameleo/img/object_product.png b/htdocs/theme/cameleo/img/object_product.png index 24c7bf76783..f6477644a1f 100644 Binary files a/htdocs/theme/cameleo/img/object_product.png and b/htdocs/theme/cameleo/img/object_product.png differ diff --git a/htdocs/theme/cameleo/img/object_project.png b/htdocs/theme/cameleo/img/object_project.png index ae1d7deadb7..7324bca0143 100644 Binary files a/htdocs/theme/cameleo/img/object_project.png and b/htdocs/theme/cameleo/img/object_project.png differ diff --git a/htdocs/theme/cameleo/img/object_projectpub.png b/htdocs/theme/cameleo/img/object_projectpub.png index 9ac8f39355f..1ba7da16dcc 100644 Binary files a/htdocs/theme/cameleo/img/object_projectpub.png and b/htdocs/theme/cameleo/img/object_projectpub.png differ diff --git a/htdocs/theme/cameleo/img/object_projecttask.png b/htdocs/theme/cameleo/img/object_projecttask.png index a3a580c3019..7aff1a2ee20 100644 Binary files a/htdocs/theme/cameleo/img/object_projecttask.png and b/htdocs/theme/cameleo/img/object_projecttask.png differ diff --git a/htdocs/theme/cameleo/img/object_propal.png b/htdocs/theme/cameleo/img/object_propal.png index b7780a6b66f..4e66eebbedb 100644 Binary files a/htdocs/theme/cameleo/img/object_propal.png and b/htdocs/theme/cameleo/img/object_propal.png differ diff --git a/htdocs/theme/cameleo/img/object_reduc.png b/htdocs/theme/cameleo/img/object_reduc.png index fd02156f297..39dcc0fe6a0 100644 Binary files a/htdocs/theme/cameleo/img/object_reduc.png and b/htdocs/theme/cameleo/img/object_reduc.png differ diff --git a/htdocs/theme/cameleo/img/object_rss.png b/htdocs/theme/cameleo/img/object_rss.png index dad39390fa4..f3f9db58d95 100644 Binary files a/htdocs/theme/cameleo/img/object_rss.png and b/htdocs/theme/cameleo/img/object_rss.png differ diff --git a/htdocs/theme/cameleo/img/object_search.png b/htdocs/theme/cameleo/img/object_search.png index 2627db2a7ba..6ffb1c806c7 100644 Binary files a/htdocs/theme/cameleo/img/object_search.png and b/htdocs/theme/cameleo/img/object_search.png differ diff --git a/htdocs/theme/cameleo/img/object_sending.png b/htdocs/theme/cameleo/img/object_sending.png index 2e267bae6e4..93404176e87 100644 Binary files a/htdocs/theme/cameleo/img/object_sending.png and b/htdocs/theme/cameleo/img/object_sending.png differ diff --git a/htdocs/theme/cameleo/img/object_service.png b/htdocs/theme/cameleo/img/object_service.png index 725b0bcd2c0..7e990268740 100644 Binary files a/htdocs/theme/cameleo/img/object_service.png and b/htdocs/theme/cameleo/img/object_service.png differ diff --git a/htdocs/theme/cameleo/img/object_skype.png b/htdocs/theme/cameleo/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/cameleo/img/object_skype.png and b/htdocs/theme/cameleo/img/object_skype.png differ diff --git a/htdocs/theme/cameleo/img/object_stat.png b/htdocs/theme/cameleo/img/object_stat.png index a9bd77da6b7..5b7ea7e966e 100644 Binary files a/htdocs/theme/cameleo/img/object_stat.png and b/htdocs/theme/cameleo/img/object_stat.png differ diff --git a/htdocs/theme/cameleo/img/object_stock.png b/htdocs/theme/cameleo/img/object_stock.png index c4c06ab6f78..94c594e99af 100644 Binary files a/htdocs/theme/cameleo/img/object_stock.png and b/htdocs/theme/cameleo/img/object_stock.png differ diff --git a/htdocs/theme/cameleo/img/object_task.png b/htdocs/theme/cameleo/img/object_task.png index c5fbb2a031a..20b9d641a23 100644 Binary files a/htdocs/theme/cameleo/img/object_task.png and b/htdocs/theme/cameleo/img/object_task.png differ diff --git a/htdocs/theme/cameleo/img/object_technic.png b/htdocs/theme/cameleo/img/object_technic.png index 3c3862e0cbf..cc71bb4fde2 100644 Binary files a/htdocs/theme/cameleo/img/object_technic.png and b/htdocs/theme/cameleo/img/object_technic.png differ diff --git a/htdocs/theme/cameleo/img/object_trip.png b/htdocs/theme/cameleo/img/object_trip.png index 9e082380242..c695a26415d 100644 Binary files a/htdocs/theme/cameleo/img/object_trip.png and b/htdocs/theme/cameleo/img/object_trip.png differ diff --git a/htdocs/theme/cameleo/img/object_user.png b/htdocs/theme/cameleo/img/object_user.png index 02704bd1a57..152fd668c08 100644 Binary files a/htdocs/theme/cameleo/img/object_user.png and b/htdocs/theme/cameleo/img/object_user.png differ diff --git a/htdocs/theme/cameleo/img/off.png b/htdocs/theme/cameleo/img/off.png index 38541c3d4b7..9e28e0fa91e 100644 Binary files a/htdocs/theme/cameleo/img/off.png and b/htdocs/theme/cameleo/img/off.png differ diff --git a/htdocs/theme/cameleo/img/on.png b/htdocs/theme/cameleo/img/on.png index e93440482ce..72e87ecaeb4 100644 Binary files a/htdocs/theme/cameleo/img/on.png and b/htdocs/theme/cameleo/img/on.png differ diff --git a/htdocs/theme/cameleo/img/pdf2.png b/htdocs/theme/cameleo/img/pdf2.png index 407fa968323..975d8098993 100644 Binary files a/htdocs/theme/cameleo/img/pdf2.png and b/htdocs/theme/cameleo/img/pdf2.png differ diff --git a/htdocs/theme/cameleo/img/pdf3.png b/htdocs/theme/cameleo/img/pdf3.png index f8058fa94b7..f053591bf2d 100644 Binary files a/htdocs/theme/cameleo/img/pdf3.png and b/htdocs/theme/cameleo/img/pdf3.png differ diff --git a/htdocs/theme/cameleo/img/play.png b/htdocs/theme/cameleo/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/cameleo/img/play.png and b/htdocs/theme/cameleo/img/play.png differ diff --git a/htdocs/theme/cameleo/img/previous.png b/htdocs/theme/cameleo/img/previous.png index ed929ee0c05..bff23a0f55d 100644 Binary files a/htdocs/theme/cameleo/img/previous.png and b/htdocs/theme/cameleo/img/previous.png differ diff --git a/htdocs/theme/cameleo/img/printer.png b/htdocs/theme/cameleo/img/printer.png index 2521942af43..774686d23be 100644 Binary files a/htdocs/theme/cameleo/img/printer.png and b/htdocs/theme/cameleo/img/printer.png differ diff --git a/htdocs/theme/cameleo/img/puce.png b/htdocs/theme/cameleo/img/puce.png index 922aff295cf..0bd4bd51023 100644 Binary files a/htdocs/theme/cameleo/img/puce.png and b/htdocs/theme/cameleo/img/puce.png differ diff --git a/htdocs/theme/cameleo/img/recent.png b/htdocs/theme/cameleo/img/recent.png index e721f977f33..a3405497f03 100644 Binary files a/htdocs/theme/cameleo/img/recent.png and b/htdocs/theme/cameleo/img/recent.png differ diff --git a/htdocs/theme/cameleo/img/redstar.png b/htdocs/theme/cameleo/img/redstar.png index 83ed4f4ae0d..ce7b207978a 100644 Binary files a/htdocs/theme/cameleo/img/redstar.png and b/htdocs/theme/cameleo/img/redstar.png differ diff --git a/htdocs/theme/cameleo/img/refresh.png b/htdocs/theme/cameleo/img/refresh.png index fdd0a2920e0..edc14adcd23 100644 Binary files a/htdocs/theme/cameleo/img/refresh.png and b/htdocs/theme/cameleo/img/refresh.png differ diff --git a/htdocs/theme/cameleo/img/reload.png b/htdocs/theme/cameleo/img/reload.png index 9efecb045f8..1e638197612 100644 Binary files a/htdocs/theme/cameleo/img/reload.png and b/htdocs/theme/cameleo/img/reload.png differ diff --git a/htdocs/theme/cameleo/img/rightarrow.png b/htdocs/theme/cameleo/img/rightarrow.png index 2ea37440ecd..2c479d9453b 100644 Binary files a/htdocs/theme/cameleo/img/rightarrow.png and b/htdocs/theme/cameleo/img/rightarrow.png differ diff --git a/htdocs/theme/cameleo/img/search.png b/htdocs/theme/cameleo/img/search.png index 8fc0005e69a..97f4801c921 100644 Binary files a/htdocs/theme/cameleo/img/search.png and b/htdocs/theme/cameleo/img/search.png differ diff --git a/htdocs/theme/cameleo/img/searchclear.png b/htdocs/theme/cameleo/img/searchclear.png index 45626e3be11..56fb7f1de87 100644 Binary files a/htdocs/theme/cameleo/img/searchclear.png and b/htdocs/theme/cameleo/img/searchclear.png differ diff --git a/htdocs/theme/cameleo/img/setup.png b/htdocs/theme/cameleo/img/setup.png index 71c9bf5d772..0dec91abb30 100644 Binary files a/htdocs/theme/cameleo/img/setup.png and b/htdocs/theme/cameleo/img/setup.png differ diff --git a/htdocs/theme/cameleo/img/sort_asc.png b/htdocs/theme/cameleo/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/cameleo/img/sort_asc.png and b/htdocs/theme/cameleo/img/sort_asc.png differ diff --git a/htdocs/theme/cameleo/img/sort_asc_disabled.png b/htdocs/theme/cameleo/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/cameleo/img/sort_asc_disabled.png and b/htdocs/theme/cameleo/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/cameleo/img/sort_desc.png b/htdocs/theme/cameleo/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/cameleo/img/sort_desc.png and b/htdocs/theme/cameleo/img/sort_desc.png differ diff --git a/htdocs/theme/cameleo/img/sort_desc_disabled.png b/htdocs/theme/cameleo/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/cameleo/img/sort_desc_disabled.png and b/htdocs/theme/cameleo/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/cameleo/img/split.png b/htdocs/theme/cameleo/img/split.png index a99bbcf26e7..50b6324c334 100644 Binary files a/htdocs/theme/cameleo/img/split.png and b/htdocs/theme/cameleo/img/split.png differ diff --git a/htdocs/theme/cameleo/img/star.png b/htdocs/theme/cameleo/img/star.png index 6c090d198e5..81feace1c30 100644 Binary files a/htdocs/theme/cameleo/img/star.png and b/htdocs/theme/cameleo/img/star.png differ diff --git a/htdocs/theme/cameleo/img/stats.png b/htdocs/theme/cameleo/img/stats.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/cameleo/img/statut0.png b/htdocs/theme/cameleo/img/statut0.png index f3aedc87cba..196f4f53c7d 100644 Binary files a/htdocs/theme/cameleo/img/statut0.png and b/htdocs/theme/cameleo/img/statut0.png differ diff --git a/htdocs/theme/cameleo/img/statut1.png b/htdocs/theme/cameleo/img/statut1.png index c3f62f5a773..774b3e4bd54 100644 Binary files a/htdocs/theme/cameleo/img/statut1.png and b/htdocs/theme/cameleo/img/statut1.png differ diff --git a/htdocs/theme/cameleo/img/statut3.png b/htdocs/theme/cameleo/img/statut3.png index 596f078ca8b..9ce49b93476 100644 Binary files a/htdocs/theme/cameleo/img/statut3.png and b/htdocs/theme/cameleo/img/statut3.png differ diff --git a/htdocs/theme/cameleo/img/statut4.png b/htdocs/theme/cameleo/img/statut4.png index b12bc0d000c..e4f42ac6d53 100644 Binary files a/htdocs/theme/cameleo/img/statut4.png and b/htdocs/theme/cameleo/img/statut4.png differ diff --git a/htdocs/theme/cameleo/img/statut5.png b/htdocs/theme/cameleo/img/statut5.png index 1a110285634..774b3e4bd54 100644 Binary files a/htdocs/theme/cameleo/img/statut5.png and b/htdocs/theme/cameleo/img/statut5.png differ diff --git a/htdocs/theme/cameleo/img/statut6.png b/htdocs/theme/cameleo/img/statut6.png index c3d6619e237..e4f42ac6d53 100644 Binary files a/htdocs/theme/cameleo/img/statut6.png and b/htdocs/theme/cameleo/img/statut6.png differ diff --git a/htdocs/theme/cameleo/img/statut7.png b/htdocs/theme/cameleo/img/statut7.png index 596f078ca8b..9ce49b93476 100644 Binary files a/htdocs/theme/cameleo/img/statut7.png and b/htdocs/theme/cameleo/img/statut7.png differ diff --git a/htdocs/theme/cameleo/img/statut8.png b/htdocs/theme/cameleo/img/statut8.png index 9472fd6a226..65ab6677ee7 100644 Binary files a/htdocs/theme/cameleo/img/statut8.png and b/htdocs/theme/cameleo/img/statut8.png differ diff --git a/htdocs/theme/cameleo/img/statut9.png b/htdocs/theme/cameleo/img/statut9.png index f3aedc87cba..196f4f53c7d 100644 Binary files a/htdocs/theme/cameleo/img/statut9.png and b/htdocs/theme/cameleo/img/statut9.png differ diff --git a/htdocs/theme/cameleo/img/stcomm0.png b/htdocs/theme/cameleo/img/stcomm0.png index f3aedc87cba..196f4f53c7d 100644 Binary files a/htdocs/theme/cameleo/img/stcomm0.png and b/htdocs/theme/cameleo/img/stcomm0.png differ diff --git a/htdocs/theme/cameleo/img/stcomm1.png b/htdocs/theme/cameleo/img/stcomm1.png index eb76c0fb179..6bdea492985 100644 Binary files a/htdocs/theme/cameleo/img/stcomm1.png and b/htdocs/theme/cameleo/img/stcomm1.png differ diff --git a/htdocs/theme/cameleo/img/stcomm10.png b/htdocs/theme/cameleo/img/stcomm10.png index 93f571ae6ea..ed95a29dc9a 100644 Binary files a/htdocs/theme/cameleo/img/stcomm10.png and b/htdocs/theme/cameleo/img/stcomm10.png differ diff --git a/htdocs/theme/cameleo/img/stcomm2.png b/htdocs/theme/cameleo/img/stcomm2.png index 1e76ce4946b..9e000b70dc9 100644 Binary files a/htdocs/theme/cameleo/img/stcomm2.png and b/htdocs/theme/cameleo/img/stcomm2.png differ diff --git a/htdocs/theme/cameleo/img/stcomm3.png b/htdocs/theme/cameleo/img/stcomm3.png index 465234fcd3c..5a6c0aeface 100644 Binary files a/htdocs/theme/cameleo/img/stcomm3.png and b/htdocs/theme/cameleo/img/stcomm3.png differ diff --git a/htdocs/theme/cameleo/img/stcomm4.png b/htdocs/theme/cameleo/img/stcomm4.png index 80b8e692971..0395aba2507 100644 Binary files a/htdocs/theme/cameleo/img/stcomm4.png and b/htdocs/theme/cameleo/img/stcomm4.png differ diff --git a/htdocs/theme/cameleo/img/stcomm5.png b/htdocs/theme/cameleo/img/stcomm5.png index 596f078ca8b..9ce49b93476 100644 Binary files a/htdocs/theme/cameleo/img/stcomm5.png and b/htdocs/theme/cameleo/img/stcomm5.png differ diff --git a/htdocs/theme/cameleo/img/stcomm6.png b/htdocs/theme/cameleo/img/stcomm6.png index 9472fd6a226..65ab6677ee7 100644 Binary files a/htdocs/theme/cameleo/img/stcomm6.png and b/htdocs/theme/cameleo/img/stcomm6.png differ diff --git a/htdocs/theme/cameleo/img/stcomm7.png b/htdocs/theme/cameleo/img/stcomm7.png index db669c736f7..fbb4ed56775 100644 Binary files a/htdocs/theme/cameleo/img/stcomm7.png and b/htdocs/theme/cameleo/img/stcomm7.png differ diff --git a/htdocs/theme/cameleo/img/stcomm8.png b/htdocs/theme/cameleo/img/stcomm8.png index fd89ea37856..05e7dae5dc2 100644 Binary files a/htdocs/theme/cameleo/img/stcomm8.png and b/htdocs/theme/cameleo/img/stcomm8.png differ diff --git a/htdocs/theme/cameleo/img/stcomm9.png b/htdocs/theme/cameleo/img/stcomm9.png index 526fdf4cb92..f2b68b4b218 100644 Binary files a/htdocs/theme/cameleo/img/stcomm9.png and b/htdocs/theme/cameleo/img/stcomm9.png differ diff --git a/htdocs/theme/cameleo/img/tab_background.png b/htdocs/theme/cameleo/img/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/cameleo/img/tab_background.png and b/htdocs/theme/cameleo/img/tab_background.png differ diff --git a/htdocs/theme/cameleo/img/tick.png b/htdocs/theme/cameleo/img/tick.png index 29ded7a552a..c899abb9c34 100644 Binary files a/htdocs/theme/cameleo/img/tick.png and b/htdocs/theme/cameleo/img/tick.png differ diff --git a/htdocs/theme/cameleo/img/title.png b/htdocs/theme/cameleo/img/title.png index bb1dd5683fa..eb9c329a6a5 100644 Binary files a/htdocs/theme/cameleo/img/title.png and b/htdocs/theme/cameleo/img/title.png differ diff --git a/htdocs/theme/cameleo/img/unlock.png b/htdocs/theme/cameleo/img/unlock.png index f3eebc59274..afefaa94d47 100644 Binary files a/htdocs/theme/cameleo/img/unlock.png and b/htdocs/theme/cameleo/img/unlock.png differ diff --git a/htdocs/theme/cameleo/img/uparrow.png b/htdocs/theme/cameleo/img/uparrow.png index 0f6d64e936a..5706ca39da4 100644 Binary files a/htdocs/theme/cameleo/img/uparrow.png and b/htdocs/theme/cameleo/img/uparrow.png differ diff --git a/htdocs/theme/cameleo/img/vcard.png b/htdocs/theme/cameleo/img/vcard.png index e03026f87fb..315abdf179d 100644 Binary files a/htdocs/theme/cameleo/img/vcard.png and b/htdocs/theme/cameleo/img/vcard.png differ diff --git a/htdocs/theme/cameleo/img/view.png b/htdocs/theme/cameleo/img/view.png index 4e0396f7b09..76c1e9f1e6a 100644 Binary files a/htdocs/theme/cameleo/img/view.png and b/htdocs/theme/cameleo/img/view.png differ diff --git a/htdocs/theme/cameleo/img/warning.png b/htdocs/theme/cameleo/img/warning.png index 81514897fe6..dfa237a5302 100644 Binary files a/htdocs/theme/cameleo/img/warning.png and b/htdocs/theme/cameleo/img/warning.png differ diff --git a/htdocs/theme/common/colorpicker.png b/htdocs/theme/common/colorpicker.png index e5ee4b7d74c..26cc6af26f0 100644 Binary files a/htdocs/theme/common/colorpicker.png and b/htdocs/theme/common/colorpicker.png differ diff --git a/htdocs/theme/common/devices/audio-card.png b/htdocs/theme/common/devices/audio-card.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/audio-headset.png b/htdocs/theme/common/devices/audio-headset.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/audio-input-line.png b/htdocs/theme/common/devices/audio-input-line.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/audio-input-microphone.png b/htdocs/theme/common/devices/audio-input-microphone.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/battery.png b/htdocs/theme/common/devices/battery.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/camera-photo.png b/htdocs/theme/common/devices/camera-photo.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/camera-web.png b/htdocs/theme/common/devices/camera-web.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/computer-laptop.png b/htdocs/theme/common/devices/computer-laptop.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/computer.png b/htdocs/theme/common/devices/computer.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/cpu.png b/htdocs/theme/common/devices/cpu.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-harddisk.png b/htdocs/theme/common/devices/drive-harddisk.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-optical.png b/htdocs/theme/common/devices/drive-optical.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-removable-media-usb-pendrive.png b/htdocs/theme/common/devices/drive-removable-media-usb-pendrive.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-removable-media-usb.png b/htdocs/theme/common/devices/drive-removable-media-usb.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/drive-removable-media.png b/htdocs/theme/common/devices/drive-removable-media.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/input-gaming.png b/htdocs/theme/common/devices/input-gaming.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/input-keyboard.png b/htdocs/theme/common/devices/input-keyboard.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/input-mouse.png b/htdocs/theme/common/devices/input-mouse.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/input-tablet.png b/htdocs/theme/common/devices/input-tablet.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-flash-memory-stick.png b/htdocs/theme/common/devices/media-flash-memory-stick.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-flash-sd-mmc.png b/htdocs/theme/common/devices/media-flash-sd-mmc.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-flash-smart-media.png b/htdocs/theme/common/devices/media-flash-smart-media.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-flash.png b/htdocs/theme/common/devices/media-flash.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-floppy.png b/htdocs/theme/common/devices/media-floppy.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-audio.png b/htdocs/theme/common/devices/media-optical-audio.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-blu-ray.png b/htdocs/theme/common/devices/media-optical-blu-ray.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-data.png b/htdocs/theme/common/devices/media-optical-data.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-dvd-video.png b/htdocs/theme/common/devices/media-optical-dvd-video.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-dvd.png b/htdocs/theme/common/devices/media-optical-dvd.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-mixed-cd.png b/htdocs/theme/common/devices/media-optical-mixed-cd.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-recordable.png b/htdocs/theme/common/devices/media-optical-recordable.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical-video.png b/htdocs/theme/common/devices/media-optical-video.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-optical.png b/htdocs/theme/common/devices/media-optical.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/media-tape.png b/htdocs/theme/common/devices/media-tape.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/modem.png b/htdocs/theme/common/devices/modem.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/multimedia-player-apple-ipod.png b/htdocs/theme/common/devices/multimedia-player-apple-ipod.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/multimedia-player.png b/htdocs/theme/common/devices/multimedia-player.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wired.png b/htdocs/theme/common/devices/network-wired.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-00.png b/htdocs/theme/common/devices/network-wireless-connected-00.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-100.png b/htdocs/theme/common/devices/network-wireless-connected-100.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-25.png b/htdocs/theme/common/devices/network-wireless-connected-25.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-50.png b/htdocs/theme/common/devices/network-wireless-connected-50.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-connected-75.png b/htdocs/theme/common/devices/network-wireless-connected-75.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless-disconnected.png b/htdocs/theme/common/devices/network-wireless-disconnected.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/network-wireless.png b/htdocs/theme/common/devices/network-wireless.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/pda.png b/htdocs/theme/common/devices/pda.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/phone-openmoko-freerunner.png b/htdocs/theme/common/devices/phone-openmoko-freerunner.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/phone.png b/htdocs/theme/common/devices/phone.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/printer-laser.png b/htdocs/theme/common/devices/printer-laser.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/printer.png b/htdocs/theme/common/devices/printer.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/scanner.png b/htdocs/theme/common/devices/scanner.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/video-display.png b/htdocs/theme/common/devices/video-display.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/video-projector.png b/htdocs/theme/common/devices/video-projector.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/devices/video-television.png b/htdocs/theme/common/devices/video-television.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/dolibarr_box.png b/htdocs/theme/common/dolibarr_box.png index 1005eee1a3f..074b41951ba 100644 Binary files a/htdocs/theme/common/dolibarr_box.png and b/htdocs/theme/common/dolibarr_box.png differ diff --git a/htdocs/theme/common/dolistore.jpg b/htdocs/theme/common/dolistore.jpg index 4c330cdc184..65a2d6ffae1 100644 Binary files a/htdocs/theme/common/dolistore.jpg and b/htdocs/theme/common/dolistore.jpg differ diff --git a/htdocs/theme/common/emotes/face-angel.png b/htdocs/theme/common/emotes/face-angel.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-embarrassed.png b/htdocs/theme/common/emotes/face-embarrassed.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-kiss.png b/htdocs/theme/common/emotes/face-kiss.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-laugh.png b/htdocs/theme/common/emotes/face-laugh.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-plain.png b/htdocs/theme/common/emotes/face-plain.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-raspberry.png b/htdocs/theme/common/emotes/face-raspberry.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-sad.png b/htdocs/theme/common/emotes/face-sad.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-smile-big.png b/htdocs/theme/common/emotes/face-smile-big.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-smile.png b/htdocs/theme/common/emotes/face-smile.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-surprise.png b/htdocs/theme/common/emotes/face-surprise.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-uncertain.png b/htdocs/theme/common/emotes/face-uncertain.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/emotes/face-wink.png b/htdocs/theme/common/emotes/face-wink.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/flags/ad.png b/htdocs/theme/common/flags/ad.png index 9cbbac67868..30e008b3c35 100644 Binary files a/htdocs/theme/common/flags/ad.png and b/htdocs/theme/common/flags/ad.png differ diff --git a/htdocs/theme/common/flags/ae.png b/htdocs/theme/common/flags/ae.png index b95418959f7..85d458ad289 100644 Binary files a/htdocs/theme/common/flags/ae.png and b/htdocs/theme/common/flags/ae.png differ diff --git a/htdocs/theme/common/flags/af.png b/htdocs/theme/common/flags/af.png index e7cf8379655..219c05b72b8 100644 Binary files a/htdocs/theme/common/flags/af.png and b/htdocs/theme/common/flags/af.png differ diff --git a/htdocs/theme/common/flags/ag.png b/htdocs/theme/common/flags/ag.png index e05c89a25dc..60a62e53832 100644 Binary files a/htdocs/theme/common/flags/ag.png and b/htdocs/theme/common/flags/ag.png differ diff --git a/htdocs/theme/common/flags/ai.png b/htdocs/theme/common/flags/ai.png index 99e6c99f755..0ca086500f9 100644 Binary files a/htdocs/theme/common/flags/ai.png and b/htdocs/theme/common/flags/ai.png differ diff --git a/htdocs/theme/common/flags/al.png b/htdocs/theme/common/flags/al.png index 722d29bcd91..997f3f1b748 100644 Binary files a/htdocs/theme/common/flags/al.png and b/htdocs/theme/common/flags/al.png differ diff --git a/htdocs/theme/common/flags/am.png b/htdocs/theme/common/flags/am.png index e063c9820f4..e25bc21af0f 100644 Binary files a/htdocs/theme/common/flags/am.png and b/htdocs/theme/common/flags/am.png differ diff --git a/htdocs/theme/common/flags/an.png b/htdocs/theme/common/flags/an.png index 41aa497f6b2..dab98820777 100644 Binary files a/htdocs/theme/common/flags/an.png and b/htdocs/theme/common/flags/an.png differ diff --git a/htdocs/theme/common/flags/ao.png b/htdocs/theme/common/flags/ao.png index fe1af784804..49f0b47fbdf 100644 Binary files a/htdocs/theme/common/flags/ao.png and b/htdocs/theme/common/flags/ao.png differ diff --git a/htdocs/theme/common/flags/ar.png b/htdocs/theme/common/flags/ar.png index a3ff84b1fa8..4211272f0fa 100644 Binary files a/htdocs/theme/common/flags/ar.png and b/htdocs/theme/common/flags/ar.png differ diff --git a/htdocs/theme/common/flags/as.png b/htdocs/theme/common/flags/as.png index 046d718ec23..8a2bfdaee5f 100644 Binary files a/htdocs/theme/common/flags/as.png and b/htdocs/theme/common/flags/as.png differ diff --git a/htdocs/theme/common/flags/at.png b/htdocs/theme/common/flags/at.png index 0f42a96dbee..49326161af6 100644 Binary files a/htdocs/theme/common/flags/at.png and b/htdocs/theme/common/flags/at.png differ diff --git a/htdocs/theme/common/flags/au.png b/htdocs/theme/common/flags/au.png index db60de6c18b..c2b0d6f2bac 100644 Binary files a/htdocs/theme/common/flags/au.png and b/htdocs/theme/common/flags/au.png differ diff --git a/htdocs/theme/common/flags/aw.png b/htdocs/theme/common/flags/aw.png index 26c6ad7210f..2c4a2a4ade6 100644 Binary files a/htdocs/theme/common/flags/aw.png and b/htdocs/theme/common/flags/aw.png differ diff --git a/htdocs/theme/common/flags/ax.png b/htdocs/theme/common/flags/ax.png index f9d3d501718..0d1009b3e2c 100644 Binary files a/htdocs/theme/common/flags/ax.png and b/htdocs/theme/common/flags/ax.png differ diff --git a/htdocs/theme/common/flags/az.png b/htdocs/theme/common/flags/az.png index b6d62ba21e0..d42a26360ee 100644 Binary files a/htdocs/theme/common/flags/az.png and b/htdocs/theme/common/flags/az.png differ diff --git a/htdocs/theme/common/flags/ba.png b/htdocs/theme/common/flags/ba.png index 7ccace03796..8daf16f80ad 100644 Binary files a/htdocs/theme/common/flags/ba.png and b/htdocs/theme/common/flags/ba.png differ diff --git a/htdocs/theme/common/flags/bb.png b/htdocs/theme/common/flags/bb.png index 4845ced25ff..54812d0c78d 100644 Binary files a/htdocs/theme/common/flags/bb.png and b/htdocs/theme/common/flags/bb.png differ diff --git a/htdocs/theme/common/flags/bd.png b/htdocs/theme/common/flags/bd.png index 7a0213594f3..7aeab3bf0cd 100644 Binary files a/htdocs/theme/common/flags/bd.png and b/htdocs/theme/common/flags/bd.png differ diff --git a/htdocs/theme/common/flags/be.png b/htdocs/theme/common/flags/be.png index e4e11fd8645..7c0329e9755 100644 Binary files a/htdocs/theme/common/flags/be.png and b/htdocs/theme/common/flags/be.png differ diff --git a/htdocs/theme/common/flags/bf.png b/htdocs/theme/common/flags/bf.png index d72fdcf9522..783930208fc 100644 Binary files a/htdocs/theme/common/flags/bf.png and b/htdocs/theme/common/flags/bf.png differ diff --git a/htdocs/theme/common/flags/bg.png b/htdocs/theme/common/flags/bg.png index cc99ef5ede0..b50b5cae999 100644 Binary files a/htdocs/theme/common/flags/bg.png and b/htdocs/theme/common/flags/bg.png differ diff --git a/htdocs/theme/common/flags/bh.png b/htdocs/theme/common/flags/bh.png index 4b727ab016b..07b64394023 100644 Binary files a/htdocs/theme/common/flags/bh.png and b/htdocs/theme/common/flags/bh.png differ diff --git a/htdocs/theme/common/flags/bi.png b/htdocs/theme/common/flags/bi.png index c010bbe5d8b..8dcc9a50b65 100644 Binary files a/htdocs/theme/common/flags/bi.png and b/htdocs/theme/common/flags/bi.png differ diff --git a/htdocs/theme/common/flags/bj.png b/htdocs/theme/common/flags/bj.png index b0977e677f1..90ce5ac89d4 100644 Binary files a/htdocs/theme/common/flags/bj.png and b/htdocs/theme/common/flags/bj.png differ diff --git a/htdocs/theme/common/flags/bm.png b/htdocs/theme/common/flags/bm.png index 92f56551d6e..86b1e3e2008 100644 Binary files a/htdocs/theme/common/flags/bm.png and b/htdocs/theme/common/flags/bm.png differ diff --git a/htdocs/theme/common/flags/bn.png b/htdocs/theme/common/flags/bn.png index 01d40266496..508c7bf49ef 100644 Binary files a/htdocs/theme/common/flags/bn.png and b/htdocs/theme/common/flags/bn.png differ diff --git a/htdocs/theme/common/flags/bo.png b/htdocs/theme/common/flags/bo.png index 1c2acb46d18..b53322d7ca4 100644 Binary files a/htdocs/theme/common/flags/bo.png and b/htdocs/theme/common/flags/bo.png differ diff --git a/htdocs/theme/common/flags/br.png b/htdocs/theme/common/flags/br.png index c170551ad57..dd49733c0fc 100644 Binary files a/htdocs/theme/common/flags/br.png and b/htdocs/theme/common/flags/br.png differ diff --git a/htdocs/theme/common/flags/bs.png b/htdocs/theme/common/flags/bs.png index c47b2c1cbb6..3d62217f02e 100644 Binary files a/htdocs/theme/common/flags/bs.png and b/htdocs/theme/common/flags/bs.png differ diff --git a/htdocs/theme/common/flags/bt.png b/htdocs/theme/common/flags/bt.png index bf41fd0c7b8..c6d93868a33 100644 Binary files a/htdocs/theme/common/flags/bt.png and b/htdocs/theme/common/flags/bt.png differ diff --git a/htdocs/theme/common/flags/bv.png b/htdocs/theme/common/flags/bv.png index fb90e843bb7..c403d06ad10 100644 Binary files a/htdocs/theme/common/flags/bv.png and b/htdocs/theme/common/flags/bv.png differ diff --git a/htdocs/theme/common/flags/bw.png b/htdocs/theme/common/flags/bw.png index 731ec9d41bb..62078f2c42d 100644 Binary files a/htdocs/theme/common/flags/bw.png and b/htdocs/theme/common/flags/bw.png differ diff --git a/htdocs/theme/common/flags/by.png b/htdocs/theme/common/flags/by.png index 833077d5769..20516d176f0 100644 Binary files a/htdocs/theme/common/flags/by.png and b/htdocs/theme/common/flags/by.png differ diff --git a/htdocs/theme/common/flags/bz.png b/htdocs/theme/common/flags/bz.png index 23c71c0b0d8..6d7e706544f 100644 Binary files a/htdocs/theme/common/flags/bz.png and b/htdocs/theme/common/flags/bz.png differ diff --git a/htdocs/theme/common/flags/ca.png b/htdocs/theme/common/flags/ca.png index e034d13601f..6aa3009bcaf 100644 Binary files a/htdocs/theme/common/flags/ca.png and b/htdocs/theme/common/flags/ca.png differ diff --git a/htdocs/theme/common/flags/catalonia.png b/htdocs/theme/common/flags/catalonia.png index 5de14e4956c..69d46d8f4ef 100644 Binary files a/htdocs/theme/common/flags/catalonia.png and b/htdocs/theme/common/flags/catalonia.png differ diff --git a/htdocs/theme/common/flags/cc.png b/htdocs/theme/common/flags/cc.png index ee54eceba35..e32bd1f9a82 100644 Binary files a/htdocs/theme/common/flags/cc.png and b/htdocs/theme/common/flags/cc.png differ diff --git a/htdocs/theme/common/flags/cf.png b/htdocs/theme/common/flags/cf.png index d0e272b7a7c..4fe18833d61 100644 Binary files a/htdocs/theme/common/flags/cf.png and b/htdocs/theme/common/flags/cf.png differ diff --git a/htdocs/theme/common/flags/cg.png b/htdocs/theme/common/flags/cg.png index 51f35cd5c70..23c51278c5c 100644 Binary files a/htdocs/theme/common/flags/cg.png and b/htdocs/theme/common/flags/cg.png differ diff --git a/htdocs/theme/common/flags/ch.png b/htdocs/theme/common/flags/ch.png index 3c2666cf21b..0b5ec13d26c 100644 Binary files a/htdocs/theme/common/flags/ch.png and b/htdocs/theme/common/flags/ch.png differ diff --git a/htdocs/theme/common/flags/ci.png b/htdocs/theme/common/flags/ci.png index 49230aa2b29..079a5b74b19 100644 Binary files a/htdocs/theme/common/flags/ci.png and b/htdocs/theme/common/flags/ci.png differ diff --git a/htdocs/theme/common/flags/ck.png b/htdocs/theme/common/flags/ck.png index 9200b718ce8..c3de282a2fa 100644 Binary files a/htdocs/theme/common/flags/ck.png and b/htdocs/theme/common/flags/ck.png differ diff --git a/htdocs/theme/common/flags/cl.png b/htdocs/theme/common/flags/cl.png index 36e5cfc3d50..f6e756fda12 100644 Binary files a/htdocs/theme/common/flags/cl.png and b/htdocs/theme/common/flags/cl.png differ diff --git a/htdocs/theme/common/flags/cm.png b/htdocs/theme/common/flags/cm.png index aee03acc323..4bf34fb5552 100644 Binary files a/htdocs/theme/common/flags/cm.png and b/htdocs/theme/common/flags/cm.png differ diff --git a/htdocs/theme/common/flags/cn.png b/htdocs/theme/common/flags/cn.png index 842a3c49625..45bdfe47cfa 100644 Binary files a/htdocs/theme/common/flags/cn.png and b/htdocs/theme/common/flags/cn.png differ diff --git a/htdocs/theme/common/flags/co.png b/htdocs/theme/common/flags/co.png index fab952d2891..8933a71b530 100644 Binary files a/htdocs/theme/common/flags/co.png and b/htdocs/theme/common/flags/co.png differ diff --git a/htdocs/theme/common/flags/cr.png b/htdocs/theme/common/flags/cr.png index 9632de9f616..2c84ea0c053 100644 Binary files a/htdocs/theme/common/flags/cr.png and b/htdocs/theme/common/flags/cr.png differ diff --git a/htdocs/theme/common/flags/cs.png b/htdocs/theme/common/flags/cs.png index 7e317bcdc8b..8fde28a6dfd 100644 Binary files a/htdocs/theme/common/flags/cs.png and b/htdocs/theme/common/flags/cs.png differ diff --git a/htdocs/theme/common/flags/cu.png b/htdocs/theme/common/flags/cu.png index f27bca37504..fe475e9b070 100644 Binary files a/htdocs/theme/common/flags/cu.png and b/htdocs/theme/common/flags/cu.png differ diff --git a/htdocs/theme/common/flags/cv.png b/htdocs/theme/common/flags/cv.png index 6cb77c61236..eff1aae4c98 100644 Binary files a/htdocs/theme/common/flags/cv.png and b/htdocs/theme/common/flags/cv.png differ diff --git a/htdocs/theme/common/flags/cx.png b/htdocs/theme/common/flags/cx.png index 9054c44b99f..245c76954d0 100644 Binary files a/htdocs/theme/common/flags/cx.png and b/htdocs/theme/common/flags/cx.png differ diff --git a/htdocs/theme/common/flags/cy.png b/htdocs/theme/common/flags/cy.png index 5475b558785..52fc49a27fe 100644 Binary files a/htdocs/theme/common/flags/cy.png and b/htdocs/theme/common/flags/cy.png differ diff --git a/htdocs/theme/common/flags/cz.png b/htdocs/theme/common/flags/cz.png index dfe4d732962..3e97234172f 100644 Binary files a/htdocs/theme/common/flags/cz.png and b/htdocs/theme/common/flags/cz.png differ diff --git a/htdocs/theme/common/flags/de.png b/htdocs/theme/common/flags/de.png index a1374d11f22..26c425a2bfc 100644 Binary files a/htdocs/theme/common/flags/de.png and b/htdocs/theme/common/flags/de.png differ diff --git a/htdocs/theme/common/flags/dj.png b/htdocs/theme/common/flags/dj.png index c769df60921..c71c3600212 100644 Binary files a/htdocs/theme/common/flags/dj.png and b/htdocs/theme/common/flags/dj.png differ diff --git a/htdocs/theme/common/flags/dk.png b/htdocs/theme/common/flags/dk.png index da446d7ffda..5d93653f59d 100644 Binary files a/htdocs/theme/common/flags/dk.png and b/htdocs/theme/common/flags/dk.png differ diff --git a/htdocs/theme/common/flags/dm.png b/htdocs/theme/common/flags/dm.png index 5e78e1e3a60..687c73acb33 100644 Binary files a/htdocs/theme/common/flags/dm.png and b/htdocs/theme/common/flags/dm.png differ diff --git a/htdocs/theme/common/flags/do.png b/htdocs/theme/common/flags/do.png index f958623838b..5618447d2da 100644 Binary files a/htdocs/theme/common/flags/do.png and b/htdocs/theme/common/flags/do.png differ diff --git a/htdocs/theme/common/flags/dz.png b/htdocs/theme/common/flags/dz.png index a6a38700852..55ab7971596 100644 Binary files a/htdocs/theme/common/flags/dz.png and b/htdocs/theme/common/flags/dz.png differ diff --git a/htdocs/theme/common/flags/ec.png b/htdocs/theme/common/flags/ec.png index d25f3d461dd..1588df6feb9 100644 Binary files a/htdocs/theme/common/flags/ec.png and b/htdocs/theme/common/flags/ec.png differ diff --git a/htdocs/theme/common/flags/ee.png b/htdocs/theme/common/flags/ee.png index 0b643ab2d17..152ac6dd5c1 100644 Binary files a/htdocs/theme/common/flags/ee.png and b/htdocs/theme/common/flags/ee.png differ diff --git a/htdocs/theme/common/flags/eg.png b/htdocs/theme/common/flags/eg.png index 05522174578..d3e67889305 100644 Binary files a/htdocs/theme/common/flags/eg.png and b/htdocs/theme/common/flags/eg.png differ diff --git a/htdocs/theme/common/flags/eh.png b/htdocs/theme/common/flags/eh.png index 69852d6b48e..84f89ed867e 100644 Binary files a/htdocs/theme/common/flags/eh.png and b/htdocs/theme/common/flags/eh.png differ diff --git a/htdocs/theme/common/flags/en.png b/htdocs/theme/common/flags/en.png index 8161f0727fa..025009e2045 100644 Binary files a/htdocs/theme/common/flags/en.png and b/htdocs/theme/common/flags/en.png differ diff --git a/htdocs/theme/common/flags/england.png b/htdocs/theme/common/flags/england.png index e2b69c415f7..50bd40cb7df 100644 Binary files a/htdocs/theme/common/flags/england.png and b/htdocs/theme/common/flags/england.png differ diff --git a/htdocs/theme/common/flags/er.png b/htdocs/theme/common/flags/er.png index eb1a436cae9..c727d4d349d 100644 Binary files a/htdocs/theme/common/flags/er.png and b/htdocs/theme/common/flags/er.png differ diff --git a/htdocs/theme/common/flags/es.png b/htdocs/theme/common/flags/es.png index e8b6f2f1613..12dd9a59475 100644 Binary files a/htdocs/theme/common/flags/es.png and b/htdocs/theme/common/flags/es.png differ diff --git a/htdocs/theme/common/flags/et.png b/htdocs/theme/common/flags/et.png index f36f2a7866d..26cfab3a785 100644 Binary files a/htdocs/theme/common/flags/et.png and b/htdocs/theme/common/flags/et.png differ diff --git a/htdocs/theme/common/flags/fam.png b/htdocs/theme/common/flags/fam.png index 42d1484be8d..aebb02c64eb 100644 Binary files a/htdocs/theme/common/flags/fam.png and b/htdocs/theme/common/flags/fam.png differ diff --git a/htdocs/theme/common/flags/fi.png b/htdocs/theme/common/flags/fi.png index 364ef4838bd..e5d813ab456 100644 Binary files a/htdocs/theme/common/flags/fi.png and b/htdocs/theme/common/flags/fi.png differ diff --git a/htdocs/theme/common/flags/fj.png b/htdocs/theme/common/flags/fj.png index fa6a000e44f..ccd3090bbfc 100644 Binary files a/htdocs/theme/common/flags/fj.png and b/htdocs/theme/common/flags/fj.png differ diff --git a/htdocs/theme/common/flags/fk.png b/htdocs/theme/common/flags/fk.png index 27e145e32a2..094e64f2093 100644 Binary files a/htdocs/theme/common/flags/fk.png and b/htdocs/theme/common/flags/fk.png differ diff --git a/htdocs/theme/common/flags/fm.png b/htdocs/theme/common/flags/fm.png index 89972e9cc5f..acb54953825 100644 Binary files a/htdocs/theme/common/flags/fm.png and b/htdocs/theme/common/flags/fm.png differ diff --git a/htdocs/theme/common/flags/fo.png b/htdocs/theme/common/flags/fo.png index d1064424df9..7ba11b6d1ba 100644 Binary files a/htdocs/theme/common/flags/fo.png and b/htdocs/theme/common/flags/fo.png differ diff --git a/htdocs/theme/common/flags/fr.png b/htdocs/theme/common/flags/fr.png index 3dd99eca7cf..9bceb7c255f 100644 Binary files a/htdocs/theme/common/flags/fr.png and b/htdocs/theme/common/flags/fr.png differ diff --git a/htdocs/theme/common/flags/ga.png b/htdocs/theme/common/flags/ga.png index c7d38e0976e..54c7c40c2ab 100644 Binary files a/htdocs/theme/common/flags/ga.png and b/htdocs/theme/common/flags/ga.png differ diff --git a/htdocs/theme/common/flags/gb.png b/htdocs/theme/common/flags/gb.png index 94530bc0224..025009e2045 100644 Binary files a/htdocs/theme/common/flags/gb.png and b/htdocs/theme/common/flags/gb.png differ diff --git a/htdocs/theme/common/flags/gd.png b/htdocs/theme/common/flags/gd.png index b8944ea771b..07cdb3d11eb 100644 Binary files a/htdocs/theme/common/flags/gd.png and b/htdocs/theme/common/flags/gd.png differ diff --git a/htdocs/theme/common/flags/ge.png b/htdocs/theme/common/flags/ge.png index d1611d44a84..0d3f6b3d99a 100644 Binary files a/htdocs/theme/common/flags/ge.png and b/htdocs/theme/common/flags/ge.png differ diff --git a/htdocs/theme/common/flags/gf.png b/htdocs/theme/common/flags/gf.png index 3dd99eca7cf..9bceb7c255f 100644 Binary files a/htdocs/theme/common/flags/gf.png and b/htdocs/theme/common/flags/gf.png differ diff --git a/htdocs/theme/common/flags/gg.png b/htdocs/theme/common/flags/gg.png index d83d0dfa10c..a61bc7ddc7f 100644 Binary files a/htdocs/theme/common/flags/gg.png and b/htdocs/theme/common/flags/gg.png differ diff --git a/htdocs/theme/common/flags/gh.png b/htdocs/theme/common/flags/gh.png index f21737a2384..d5b36270abb 100644 Binary files a/htdocs/theme/common/flags/gh.png and b/htdocs/theme/common/flags/gh.png differ diff --git a/htdocs/theme/common/flags/gi.png b/htdocs/theme/common/flags/gi.png index 514093218ee..54d542c8eb3 100644 Binary files a/htdocs/theme/common/flags/gi.png and b/htdocs/theme/common/flags/gi.png differ diff --git a/htdocs/theme/common/flags/gl.png b/htdocs/theme/common/flags/gl.png index de49012f0a8..a20795c2ea8 100644 Binary files a/htdocs/theme/common/flags/gl.png and b/htdocs/theme/common/flags/gl.png differ diff --git a/htdocs/theme/common/flags/gm.png b/htdocs/theme/common/flags/gm.png index 27bf0d5422e..3c5d1fc3382 100644 Binary files a/htdocs/theme/common/flags/gm.png and b/htdocs/theme/common/flags/gm.png differ diff --git a/htdocs/theme/common/flags/gn.png b/htdocs/theme/common/flags/gn.png index 24731c9226d..0a97da77bad 100644 Binary files a/htdocs/theme/common/flags/gn.png and b/htdocs/theme/common/flags/gn.png differ diff --git a/htdocs/theme/common/flags/gp.png b/htdocs/theme/common/flags/gp.png index 6d12f0a2c3b..2ed1b78eadc 100644 Binary files a/htdocs/theme/common/flags/gp.png and b/htdocs/theme/common/flags/gp.png differ diff --git a/htdocs/theme/common/flags/gq.png b/htdocs/theme/common/flags/gq.png index db514344948..c6b3d5d3f2e 100644 Binary files a/htdocs/theme/common/flags/gq.png and b/htdocs/theme/common/flags/gq.png differ diff --git a/htdocs/theme/common/flags/gr.png b/htdocs/theme/common/flags/gr.png index 32c174e0338..c5a05354189 100644 Binary files a/htdocs/theme/common/flags/gr.png and b/htdocs/theme/common/flags/gr.png differ diff --git a/htdocs/theme/common/flags/gs.png b/htdocs/theme/common/flags/gs.png index 8116e5035f1..33385645196 100644 Binary files a/htdocs/theme/common/flags/gs.png and b/htdocs/theme/common/flags/gs.png differ diff --git a/htdocs/theme/common/flags/gt.png b/htdocs/theme/common/flags/gt.png index e70b5f1cb0b..375a86987e6 100644 Binary files a/htdocs/theme/common/flags/gt.png and b/htdocs/theme/common/flags/gt.png differ diff --git a/htdocs/theme/common/flags/gu.png b/htdocs/theme/common/flags/gu.png index 9a3f911bd83..ad91f5c37e8 100644 Binary files a/htdocs/theme/common/flags/gu.png and b/htdocs/theme/common/flags/gu.png differ diff --git a/htdocs/theme/common/flags/gw.png b/htdocs/theme/common/flags/gw.png index ab2ea0799ae..815d1eba4ab 100644 Binary files a/htdocs/theme/common/flags/gw.png and b/htdocs/theme/common/flags/gw.png differ diff --git a/htdocs/theme/common/flags/gy.png b/htdocs/theme/common/flags/gy.png index d9584813375..3e74461376e 100644 Binary files a/htdocs/theme/common/flags/gy.png and b/htdocs/theme/common/flags/gy.png differ diff --git a/htdocs/theme/common/flags/hk.png b/htdocs/theme/common/flags/hk.png index 57d1750201e..cb8dc67b4ac 100644 Binary files a/htdocs/theme/common/flags/hk.png and b/htdocs/theme/common/flags/hk.png differ diff --git a/htdocs/theme/common/flags/hm.png b/htdocs/theme/common/flags/hm.png index f7aba127e3f..c2b0d6f2bac 100644 Binary files a/htdocs/theme/common/flags/hm.png and b/htdocs/theme/common/flags/hm.png differ diff --git a/htdocs/theme/common/flags/hn.png b/htdocs/theme/common/flags/hn.png index 88ab2794bc5..45b6fe69264 100644 Binary files a/htdocs/theme/common/flags/hn.png and b/htdocs/theme/common/flags/hn.png differ diff --git a/htdocs/theme/common/flags/hr.png b/htdocs/theme/common/flags/hr.png index 46373d48960..a93b68684ed 100644 Binary files a/htdocs/theme/common/flags/hr.png and b/htdocs/theme/common/flags/hr.png differ diff --git a/htdocs/theme/common/flags/ht.png b/htdocs/theme/common/flags/ht.png index 1a6a94e9787..849aeef99f9 100644 Binary files a/htdocs/theme/common/flags/ht.png and b/htdocs/theme/common/flags/ht.png differ diff --git a/htdocs/theme/common/flags/hu.png b/htdocs/theme/common/flags/hu.png index 3a5e37750eb..92d2c1b66f6 100644 Binary files a/htdocs/theme/common/flags/hu.png and b/htdocs/theme/common/flags/hu.png differ diff --git a/htdocs/theme/common/flags/id.png b/htdocs/theme/common/flags/id.png index 103f9f43a38..b1d3776b0f6 100644 Binary files a/htdocs/theme/common/flags/id.png and b/htdocs/theme/common/flags/id.png differ diff --git a/htdocs/theme/common/flags/ie.png b/htdocs/theme/common/flags/ie.png index 9530cdc067a..45fee80eab4 100644 Binary files a/htdocs/theme/common/flags/ie.png and b/htdocs/theme/common/flags/ie.png differ diff --git a/htdocs/theme/common/flags/il.png b/htdocs/theme/common/flags/il.png index 6c5e9d56954..25ac3ffcab5 100644 Binary files a/htdocs/theme/common/flags/il.png and b/htdocs/theme/common/flags/il.png differ diff --git a/htdocs/theme/common/flags/in.png b/htdocs/theme/common/flags/in.png index 7a0d7a0d393..27b07d91665 100644 Binary files a/htdocs/theme/common/flags/in.png and b/htdocs/theme/common/flags/in.png differ diff --git a/htdocs/theme/common/flags/io.png b/htdocs/theme/common/flags/io.png index bb184d200c4..a9c83c78af8 100644 Binary files a/htdocs/theme/common/flags/io.png and b/htdocs/theme/common/flags/io.png differ diff --git a/htdocs/theme/common/flags/iq.png b/htdocs/theme/common/flags/iq.png index 6ad574a1c6f..4b7aecf5d22 100644 Binary files a/htdocs/theme/common/flags/iq.png and b/htdocs/theme/common/flags/iq.png differ diff --git a/htdocs/theme/common/flags/ir.png b/htdocs/theme/common/flags/ir.png index 7cc378453a8..0667684b624 100644 Binary files a/htdocs/theme/common/flags/ir.png and b/htdocs/theme/common/flags/ir.png differ diff --git a/htdocs/theme/common/flags/is.png b/htdocs/theme/common/flags/is.png index bc582e6b8ab..7ed17c6494a 100644 Binary files a/htdocs/theme/common/flags/is.png and b/htdocs/theme/common/flags/is.png differ diff --git a/htdocs/theme/common/flags/it.png b/htdocs/theme/common/flags/it.png index 35d9cca6f5e..459bd5cf525 100644 Binary files a/htdocs/theme/common/flags/it.png and b/htdocs/theme/common/flags/it.png differ diff --git a/htdocs/theme/common/flags/jm.png b/htdocs/theme/common/flags/jm.png index a514f3c0cf4..6e37e4ff041 100644 Binary files a/htdocs/theme/common/flags/jm.png and b/htdocs/theme/common/flags/jm.png differ diff --git a/htdocs/theme/common/flags/jo.png b/htdocs/theme/common/flags/jo.png index b39d33a876e..b2005b98c34 100644 Binary files a/htdocs/theme/common/flags/jo.png and b/htdocs/theme/common/flags/jo.png differ diff --git a/htdocs/theme/common/flags/jp.png b/htdocs/theme/common/flags/jp.png index 4cd4ec095ef..f9b572923ab 100644 Binary files a/htdocs/theme/common/flags/jp.png and b/htdocs/theme/common/flags/jp.png differ diff --git a/htdocs/theme/common/flags/ke.png b/htdocs/theme/common/flags/ke.png index 64fc05eba4d..3fa66c5b32b 100644 Binary files a/htdocs/theme/common/flags/ke.png and b/htdocs/theme/common/flags/ke.png differ diff --git a/htdocs/theme/common/flags/kg.png b/htdocs/theme/common/flags/kg.png index 7ecc2174dd1..2676ec90f29 100644 Binary files a/htdocs/theme/common/flags/kg.png and b/htdocs/theme/common/flags/kg.png differ diff --git a/htdocs/theme/common/flags/kh.png b/htdocs/theme/common/flags/kh.png index 0d5d59532f1..7382c8527b3 100644 Binary files a/htdocs/theme/common/flags/kh.png and b/htdocs/theme/common/flags/kh.png differ diff --git a/htdocs/theme/common/flags/ki.png b/htdocs/theme/common/flags/ki.png index b98d197ba08..7972152dec0 100644 Binary files a/htdocs/theme/common/flags/ki.png and b/htdocs/theme/common/flags/ki.png differ diff --git a/htdocs/theme/common/flags/km.png b/htdocs/theme/common/flags/km.png index 24c11028acd..6aaafa71efc 100644 Binary files a/htdocs/theme/common/flags/km.png and b/htdocs/theme/common/flags/km.png differ diff --git a/htdocs/theme/common/flags/kn.png b/htdocs/theme/common/flags/kn.png index 663b74e59b6..e41a57c61d6 100644 Binary files a/htdocs/theme/common/flags/kn.png and b/htdocs/theme/common/flags/kn.png differ diff --git a/htdocs/theme/common/flags/kp.png b/htdocs/theme/common/flags/kp.png index fa8f31d58c0..dda0c588b9f 100644 Binary files a/htdocs/theme/common/flags/kp.png and b/htdocs/theme/common/flags/kp.png differ diff --git a/htdocs/theme/common/flags/kr.png b/htdocs/theme/common/flags/kr.png index 6af9de44c2d..76cb8c55025 100644 Binary files a/htdocs/theme/common/flags/kr.png and b/htdocs/theme/common/flags/kr.png differ diff --git a/htdocs/theme/common/flags/kw.png b/htdocs/theme/common/flags/kw.png index e64619a7e43..54563f3fcba 100644 Binary files a/htdocs/theme/common/flags/kw.png and b/htdocs/theme/common/flags/kw.png differ diff --git a/htdocs/theme/common/flags/ky.png b/htdocs/theme/common/flags/ky.png index 58dc705b65c..bb8a5951c98 100644 Binary files a/htdocs/theme/common/flags/ky.png and b/htdocs/theme/common/flags/ky.png differ diff --git a/htdocs/theme/common/flags/kz.png b/htdocs/theme/common/flags/kz.png index 0650f2a6077..9c6c52e711b 100644 Binary files a/htdocs/theme/common/flags/kz.png and b/htdocs/theme/common/flags/kz.png differ diff --git a/htdocs/theme/common/flags/la.png b/htdocs/theme/common/flags/la.png index 3d52eac824f..7ef2a818c22 100644 Binary files a/htdocs/theme/common/flags/la.png and b/htdocs/theme/common/flags/la.png differ diff --git a/htdocs/theme/common/flags/lb.png b/htdocs/theme/common/flags/lb.png index 898fa7a5f28..ef128ece9bc 100644 Binary files a/htdocs/theme/common/flags/lb.png and b/htdocs/theme/common/flags/lb.png differ diff --git a/htdocs/theme/common/flags/lc.png b/htdocs/theme/common/flags/lc.png index 131b69ba594..aeb7734b46c 100644 Binary files a/htdocs/theme/common/flags/lc.png and b/htdocs/theme/common/flags/lc.png differ diff --git a/htdocs/theme/common/flags/li.png b/htdocs/theme/common/flags/li.png index 687387820c0..760d59ff16a 100644 Binary files a/htdocs/theme/common/flags/li.png and b/htdocs/theme/common/flags/li.png differ diff --git a/htdocs/theme/common/flags/lk.png b/htdocs/theme/common/flags/lk.png index 215ee75b7ab..70ef8bbf4f8 100644 Binary files a/htdocs/theme/common/flags/lk.png and b/htdocs/theme/common/flags/lk.png differ diff --git a/htdocs/theme/common/flags/lr.png b/htdocs/theme/common/flags/lr.png index 43a41a8be0c..b1565daaf36 100644 Binary files a/htdocs/theme/common/flags/lr.png and b/htdocs/theme/common/flags/lr.png differ diff --git a/htdocs/theme/common/flags/ls.png b/htdocs/theme/common/flags/ls.png index e8828871a95..4aba8078c7c 100644 Binary files a/htdocs/theme/common/flags/ls.png and b/htdocs/theme/common/flags/ls.png differ diff --git a/htdocs/theme/common/flags/lt.png b/htdocs/theme/common/flags/lt.png index 0f4afda156d..b860b3266a3 100644 Binary files a/htdocs/theme/common/flags/lt.png and b/htdocs/theme/common/flags/lt.png differ diff --git a/htdocs/theme/common/flags/lu.png b/htdocs/theme/common/flags/lu.png index a4cfd314bd1..1783986d89b 100644 Binary files a/htdocs/theme/common/flags/lu.png and b/htdocs/theme/common/flags/lu.png differ diff --git a/htdocs/theme/common/flags/lv.png b/htdocs/theme/common/flags/lv.png index 280b4bff48e..bab01cd56ee 100644 Binary files a/htdocs/theme/common/flags/lv.png and b/htdocs/theme/common/flags/lv.png differ diff --git a/htdocs/theme/common/flags/ly.png b/htdocs/theme/common/flags/ly.png index ed91ad6fc1a..1d41b58d1fc 100644 Binary files a/htdocs/theme/common/flags/ly.png and b/htdocs/theme/common/flags/ly.png differ diff --git a/htdocs/theme/common/flags/ma.png b/htdocs/theme/common/flags/ma.png index d5d71aae7af..6810c8cae99 100644 Binary files a/htdocs/theme/common/flags/ma.png and b/htdocs/theme/common/flags/ma.png differ diff --git a/htdocs/theme/common/flags/mc.png b/htdocs/theme/common/flags/mc.png index 754a3acda6c..e9bb93a4875 100644 Binary files a/htdocs/theme/common/flags/mc.png and b/htdocs/theme/common/flags/mc.png differ diff --git a/htdocs/theme/common/flags/md.png b/htdocs/theme/common/flags/md.png index 72dec4b5340..02d9213e80f 100644 Binary files a/htdocs/theme/common/flags/md.png and b/htdocs/theme/common/flags/md.png differ diff --git a/htdocs/theme/common/flags/me.png b/htdocs/theme/common/flags/me.png index 4f3e74798d8..c18f139dd3f 100644 Binary files a/htdocs/theme/common/flags/me.png and b/htdocs/theme/common/flags/me.png differ diff --git a/htdocs/theme/common/flags/mg.png b/htdocs/theme/common/flags/mg.png index cb9c48a2b89..78cb9f3cc4a 100644 Binary files a/htdocs/theme/common/flags/mg.png and b/htdocs/theme/common/flags/mg.png differ diff --git a/htdocs/theme/common/flags/mh.png b/htdocs/theme/common/flags/mh.png index 4fe396ed9db..ce403e71ace 100644 Binary files a/htdocs/theme/common/flags/mh.png and b/htdocs/theme/common/flags/mh.png differ diff --git a/htdocs/theme/common/flags/mk.png b/htdocs/theme/common/flags/mk.png index 364a3377a9b..ed39c018d6b 100644 Binary files a/htdocs/theme/common/flags/mk.png and b/htdocs/theme/common/flags/mk.png differ diff --git a/htdocs/theme/common/flags/ml.png b/htdocs/theme/common/flags/ml.png index 027f3ed87bb..7cb80193653 100644 Binary files a/htdocs/theme/common/flags/ml.png and b/htdocs/theme/common/flags/ml.png differ diff --git a/htdocs/theme/common/flags/mm.png b/htdocs/theme/common/flags/mm.png index 6ad72752246..4090ce6d415 100644 Binary files a/htdocs/theme/common/flags/mm.png and b/htdocs/theme/common/flags/mm.png differ diff --git a/htdocs/theme/common/flags/mn.png b/htdocs/theme/common/flags/mn.png index a10bca6842a..e269d46855a 100644 Binary files a/htdocs/theme/common/flags/mn.png and b/htdocs/theme/common/flags/mn.png differ diff --git a/htdocs/theme/common/flags/mo.png b/htdocs/theme/common/flags/mo.png index 17081b8409f..763679381a0 100644 Binary files a/htdocs/theme/common/flags/mo.png and b/htdocs/theme/common/flags/mo.png differ diff --git a/htdocs/theme/common/flags/mp.png b/htdocs/theme/common/flags/mp.png index 19a0e5997af..88617cf99f3 100644 Binary files a/htdocs/theme/common/flags/mp.png and b/htdocs/theme/common/flags/mp.png differ diff --git a/htdocs/theme/common/flags/mq.png b/htdocs/theme/common/flags/mq.png index 96e4bec7c69..5a29bce76fc 100644 Binary files a/htdocs/theme/common/flags/mq.png and b/htdocs/theme/common/flags/mq.png differ diff --git a/htdocs/theme/common/flags/mr.png b/htdocs/theme/common/flags/mr.png index 2fa59151823..93a112700e1 100644 Binary files a/htdocs/theme/common/flags/mr.png and b/htdocs/theme/common/flags/mr.png differ diff --git a/htdocs/theme/common/flags/ms.png b/htdocs/theme/common/flags/ms.png index 0d967bdf594..345517e651f 100644 Binary files a/htdocs/theme/common/flags/ms.png and b/htdocs/theme/common/flags/ms.png differ diff --git a/htdocs/theme/common/flags/mt.png b/htdocs/theme/common/flags/mt.png index 52bcbab4db6..4930eb53f04 100644 Binary files a/htdocs/theme/common/flags/mt.png and b/htdocs/theme/common/flags/mt.png differ diff --git a/htdocs/theme/common/flags/mu.png b/htdocs/theme/common/flags/mu.png index 99d33d8500f..b05690cd721 100644 Binary files a/htdocs/theme/common/flags/mu.png and b/htdocs/theme/common/flags/mu.png differ diff --git a/htdocs/theme/common/flags/mv.png b/htdocs/theme/common/flags/mv.png index bb7ef640590..35e7a5784d9 100644 Binary files a/htdocs/theme/common/flags/mv.png and b/htdocs/theme/common/flags/mv.png differ diff --git a/htdocs/theme/common/flags/mw.png b/htdocs/theme/common/flags/mw.png index 0f9dc992c51..57bd5392914 100644 Binary files a/htdocs/theme/common/flags/mw.png and b/htdocs/theme/common/flags/mw.png differ diff --git a/htdocs/theme/common/flags/mx.png b/htdocs/theme/common/flags/mx.png index ea5059d8045..fe2ca683808 100644 Binary files a/htdocs/theme/common/flags/mx.png and b/htdocs/theme/common/flags/mx.png differ diff --git a/htdocs/theme/common/flags/my.png b/htdocs/theme/common/flags/my.png index 72df8474f49..8c9798b6abf 100644 Binary files a/htdocs/theme/common/flags/my.png and b/htdocs/theme/common/flags/my.png differ diff --git a/htdocs/theme/common/flags/mz.png b/htdocs/theme/common/flags/mz.png index 4876c8e074d..9fb494db12c 100644 Binary files a/htdocs/theme/common/flags/mz.png and b/htdocs/theme/common/flags/mz.png differ diff --git a/htdocs/theme/common/flags/na.png b/htdocs/theme/common/flags/na.png index f3a1890677c..c669b82e8ad 100644 Binary files a/htdocs/theme/common/flags/na.png and b/htdocs/theme/common/flags/na.png differ diff --git a/htdocs/theme/common/flags/nc.png b/htdocs/theme/common/flags/nc.png index 7f81310f41f..08c9aa312e9 100644 Binary files a/htdocs/theme/common/flags/nc.png and b/htdocs/theme/common/flags/nc.png differ diff --git a/htdocs/theme/common/flags/ne.png b/htdocs/theme/common/flags/ne.png index 3f5617924dc..ddcbdb4b793 100644 Binary files a/htdocs/theme/common/flags/ne.png and b/htdocs/theme/common/flags/ne.png differ diff --git a/htdocs/theme/common/flags/ng.png b/htdocs/theme/common/flags/ng.png index 59ec1772181..7b7729ef3d9 100644 Binary files a/htdocs/theme/common/flags/ng.png and b/htdocs/theme/common/flags/ng.png differ diff --git a/htdocs/theme/common/flags/ni.png b/htdocs/theme/common/flags/ni.png index 3e920b91082..d1c3192f702 100644 Binary files a/htdocs/theme/common/flags/ni.png and b/htdocs/theme/common/flags/ni.png differ diff --git a/htdocs/theme/common/flags/nl.png b/htdocs/theme/common/flags/nl.png index f365be6be11..7f9853cb4ba 100644 Binary files a/htdocs/theme/common/flags/nl.png and b/htdocs/theme/common/flags/nl.png differ diff --git a/htdocs/theme/common/flags/no.png b/htdocs/theme/common/flags/no.png index 39d60859962..c403d06ad10 100644 Binary files a/htdocs/theme/common/flags/no.png and b/htdocs/theme/common/flags/no.png differ diff --git a/htdocs/theme/common/flags/np.png b/htdocs/theme/common/flags/np.png index d2cd336e162..7d92685c625 100644 Binary files a/htdocs/theme/common/flags/np.png and b/htdocs/theme/common/flags/np.png differ diff --git a/htdocs/theme/common/flags/nr.png b/htdocs/theme/common/flags/nr.png index 4c523b00df7..89fbe24351c 100644 Binary files a/htdocs/theme/common/flags/nr.png and b/htdocs/theme/common/flags/nr.png differ diff --git a/htdocs/theme/common/flags/nu.png b/htdocs/theme/common/flags/nu.png index 01033c2120c..0f828f60ebb 100644 Binary files a/htdocs/theme/common/flags/nu.png and b/htdocs/theme/common/flags/nu.png differ diff --git a/htdocs/theme/common/flags/nz.png b/htdocs/theme/common/flags/nz.png index dabc9c2c3e7..541fa4dbdf5 100644 Binary files a/htdocs/theme/common/flags/nz.png and b/htdocs/theme/common/flags/nz.png differ diff --git a/htdocs/theme/common/flags/om.png b/htdocs/theme/common/flags/om.png index f011fa926d7..fae4261a4b3 100644 Binary files a/htdocs/theme/common/flags/om.png and b/htdocs/theme/common/flags/om.png differ diff --git a/htdocs/theme/common/flags/pa.png b/htdocs/theme/common/flags/pa.png index d8d03b3c410..4c39c327769 100644 Binary files a/htdocs/theme/common/flags/pa.png and b/htdocs/theme/common/flags/pa.png differ diff --git a/htdocs/theme/common/flags/pe.png b/htdocs/theme/common/flags/pe.png index b8ed40cfd61..08ac2849712 100644 Binary files a/htdocs/theme/common/flags/pe.png and b/htdocs/theme/common/flags/pe.png differ diff --git a/htdocs/theme/common/flags/pf.png b/htdocs/theme/common/flags/pf.png index d755572a94e..01ef8ff1db9 100644 Binary files a/htdocs/theme/common/flags/pf.png and b/htdocs/theme/common/flags/pf.png differ diff --git a/htdocs/theme/common/flags/pg.png b/htdocs/theme/common/flags/pg.png index f5ad1eb5143..28e777d9a35 100644 Binary files a/htdocs/theme/common/flags/pg.png and b/htdocs/theme/common/flags/pg.png differ diff --git a/htdocs/theme/common/flags/ph.png b/htdocs/theme/common/flags/ph.png index 3ec1acd2896..758d91a3647 100644 Binary files a/htdocs/theme/common/flags/ph.png and b/htdocs/theme/common/flags/ph.png differ diff --git a/htdocs/theme/common/flags/pk.png b/htdocs/theme/common/flags/pk.png index 9456267e7e6..310cf364022 100644 Binary files a/htdocs/theme/common/flags/pk.png and b/htdocs/theme/common/flags/pk.png differ diff --git a/htdocs/theme/common/flags/pl.png b/htdocs/theme/common/flags/pl.png index a000601518e..96cb1aa144c 100644 Binary files a/htdocs/theme/common/flags/pl.png and b/htdocs/theme/common/flags/pl.png differ diff --git a/htdocs/theme/common/flags/pm.png b/htdocs/theme/common/flags/pm.png index 5b81562dfbf..dab08881a6c 100644 Binary files a/htdocs/theme/common/flags/pm.png and b/htdocs/theme/common/flags/pm.png differ diff --git a/htdocs/theme/common/flags/pn.png b/htdocs/theme/common/flags/pn.png index 26b0f457b7e..aec27da5bed 100644 Binary files a/htdocs/theme/common/flags/pn.png and b/htdocs/theme/common/flags/pn.png differ diff --git a/htdocs/theme/common/flags/pr.png b/htdocs/theme/common/flags/pr.png index 9bef175e714..28f866bd6e0 100644 Binary files a/htdocs/theme/common/flags/pr.png and b/htdocs/theme/common/flags/pr.png differ diff --git a/htdocs/theme/common/flags/ps.png b/htdocs/theme/common/flags/ps.png index bb7f2fdc1cb..4b7ea877118 100644 Binary files a/htdocs/theme/common/flags/ps.png and b/htdocs/theme/common/flags/ps.png differ diff --git a/htdocs/theme/common/flags/pt.png b/htdocs/theme/common/flags/pt.png index 6360b668a8c..1dbc37f1283 100644 Binary files a/htdocs/theme/common/flags/pt.png and b/htdocs/theme/common/flags/pt.png differ diff --git a/htdocs/theme/common/flags/pw.png b/htdocs/theme/common/flags/pw.png index 679709dc95e..a8df9403a9b 100644 Binary files a/htdocs/theme/common/flags/pw.png and b/htdocs/theme/common/flags/pw.png differ diff --git a/htdocs/theme/common/flags/py.png b/htdocs/theme/common/flags/py.png index 3c4fac78c3d..ac02fc5bc6e 100644 Binary files a/htdocs/theme/common/flags/py.png and b/htdocs/theme/common/flags/py.png differ diff --git a/htdocs/theme/common/flags/qa.png b/htdocs/theme/common/flags/qa.png index 3589176e875..e9c75e98be8 100644 Binary files a/htdocs/theme/common/flags/qa.png and b/htdocs/theme/common/flags/qa.png differ diff --git a/htdocs/theme/common/flags/re.png b/htdocs/theme/common/flags/re.png index c69762fc1d1..9bceb7c255f 100644 Binary files a/htdocs/theme/common/flags/re.png and b/htdocs/theme/common/flags/re.png differ diff --git a/htdocs/theme/common/flags/ro.png b/htdocs/theme/common/flags/ro.png index 86d99ff8bc0..d914fde33f1 100644 Binary files a/htdocs/theme/common/flags/ro.png and b/htdocs/theme/common/flags/ro.png differ diff --git a/htdocs/theme/common/flags/rs.png b/htdocs/theme/common/flags/rs.png index f43d6667e56..2284c686c37 100644 Binary files a/htdocs/theme/common/flags/rs.png and b/htdocs/theme/common/flags/rs.png differ diff --git a/htdocs/theme/common/flags/ru.png b/htdocs/theme/common/flags/ru.png index bdd68e3ee3d..5ab028885c1 100644 Binary files a/htdocs/theme/common/flags/ru.png and b/htdocs/theme/common/flags/ru.png differ diff --git a/htdocs/theme/common/flags/rw.png b/htdocs/theme/common/flags/rw.png index e1da81921b4..9fe4fde864d 100644 Binary files a/htdocs/theme/common/flags/rw.png and b/htdocs/theme/common/flags/rw.png differ diff --git a/htdocs/theme/common/flags/sa.png b/htdocs/theme/common/flags/sa.png index f8c924c9e82..a65b59e06a1 100644 Binary files a/htdocs/theme/common/flags/sa.png and b/htdocs/theme/common/flags/sa.png differ diff --git a/htdocs/theme/common/flags/sb.png b/htdocs/theme/common/flags/sb.png index d5f0386ebdc..43e8a46da8c 100644 Binary files a/htdocs/theme/common/flags/sb.png and b/htdocs/theme/common/flags/sb.png differ diff --git a/htdocs/theme/common/flags/sc.png b/htdocs/theme/common/flags/sc.png index c3a1ddf5665..e41bc222505 100644 Binary files a/htdocs/theme/common/flags/sc.png and b/htdocs/theme/common/flags/sc.png differ diff --git a/htdocs/theme/common/flags/scotland.png b/htdocs/theme/common/flags/scotland.png index cc808df9aef..31c6075c5b9 100644 Binary files a/htdocs/theme/common/flags/scotland.png and b/htdocs/theme/common/flags/scotland.png differ diff --git a/htdocs/theme/common/flags/sd.png b/htdocs/theme/common/flags/sd.png index 1935149bdd3..9770d0bbeb9 100644 Binary files a/htdocs/theme/common/flags/sd.png and b/htdocs/theme/common/flags/sd.png differ diff --git a/htdocs/theme/common/flags/se.png b/htdocs/theme/common/flags/se.png index fd800f1df4f..569fe949e23 100644 Binary files a/htdocs/theme/common/flags/se.png and b/htdocs/theme/common/flags/se.png differ diff --git a/htdocs/theme/common/flags/sg.png b/htdocs/theme/common/flags/sg.png index d71eba395b1..22240587ad3 100644 Binary files a/htdocs/theme/common/flags/sg.png and b/htdocs/theme/common/flags/sg.png differ diff --git a/htdocs/theme/common/flags/sh.png b/htdocs/theme/common/flags/sh.png index c8da953a71b..a4633de4fc5 100644 Binary files a/htdocs/theme/common/flags/sh.png and b/htdocs/theme/common/flags/sh.png differ diff --git a/htdocs/theme/common/flags/si.png b/htdocs/theme/common/flags/si.png index 14566c987de..a73dd8c2bc6 100644 Binary files a/htdocs/theme/common/flags/si.png and b/htdocs/theme/common/flags/si.png differ diff --git a/htdocs/theme/common/flags/sj.png b/htdocs/theme/common/flags/sj.png index 2a032e25df7..c403d06ad10 100644 Binary files a/htdocs/theme/common/flags/sj.png and b/htdocs/theme/common/flags/sj.png differ diff --git a/htdocs/theme/common/flags/sk.png b/htdocs/theme/common/flags/sk.png index acf3dbb312a..b1b99b04678 100644 Binary files a/htdocs/theme/common/flags/sk.png and b/htdocs/theme/common/flags/sk.png differ diff --git a/htdocs/theme/common/flags/sl.png b/htdocs/theme/common/flags/sl.png index c50b2795087..ed622b46045 100644 Binary files a/htdocs/theme/common/flags/sl.png and b/htdocs/theme/common/flags/sl.png differ diff --git a/htdocs/theme/common/flags/sm.png b/htdocs/theme/common/flags/sm.png index e4aebb22017..abaed46622b 100644 Binary files a/htdocs/theme/common/flags/sm.png and b/htdocs/theme/common/flags/sm.png differ diff --git a/htdocs/theme/common/flags/sn.png b/htdocs/theme/common/flags/sn.png index 525971f35fe..b8fe72eddfd 100644 Binary files a/htdocs/theme/common/flags/sn.png and b/htdocs/theme/common/flags/sn.png differ diff --git a/htdocs/theme/common/flags/so.png b/htdocs/theme/common/flags/so.png index 1dc6f40aa02..26e78bb0e32 100644 Binary files a/htdocs/theme/common/flags/so.png and b/htdocs/theme/common/flags/so.png differ diff --git a/htdocs/theme/common/flags/sr.png b/htdocs/theme/common/flags/sr.png index e13ee67f2e6..f838a8bb472 100644 Binary files a/htdocs/theme/common/flags/sr.png and b/htdocs/theme/common/flags/sr.png differ diff --git a/htdocs/theme/common/flags/st.png b/htdocs/theme/common/flags/st.png index 48a547a0f89..fa50b4301e9 100644 Binary files a/htdocs/theme/common/flags/st.png and b/htdocs/theme/common/flags/st.png differ diff --git a/htdocs/theme/common/flags/sv.png b/htdocs/theme/common/flags/sv.png index 924da6f465c..8604c1f5864 100644 Binary files a/htdocs/theme/common/flags/sv.png and b/htdocs/theme/common/flags/sv.png differ diff --git a/htdocs/theme/common/flags/sy.png b/htdocs/theme/common/flags/sy.png index a4caabc5bb3..0e5972c1a92 100644 Binary files a/htdocs/theme/common/flags/sy.png and b/htdocs/theme/common/flags/sy.png differ diff --git a/htdocs/theme/common/flags/sz.png b/htdocs/theme/common/flags/sz.png index 1f2a001ee6a..4e3f1fdb894 100644 Binary files a/htdocs/theme/common/flags/sz.png and b/htdocs/theme/common/flags/sz.png differ diff --git a/htdocs/theme/common/flags/tc.png b/htdocs/theme/common/flags/tc.png index 83fc10aa290..e7e9a0a18a0 100644 Binary files a/htdocs/theme/common/flags/tc.png and b/htdocs/theme/common/flags/tc.png differ diff --git a/htdocs/theme/common/flags/td.png b/htdocs/theme/common/flags/td.png index 153eeba1f2e..dec25350f52 100644 Binary files a/htdocs/theme/common/flags/td.png and b/htdocs/theme/common/flags/td.png differ diff --git a/htdocs/theme/common/flags/tf.png b/htdocs/theme/common/flags/tf.png index 27477209633..8106f7adac0 100644 Binary files a/htdocs/theme/common/flags/tf.png and b/htdocs/theme/common/flags/tf.png differ diff --git a/htdocs/theme/common/flags/tg.png b/htdocs/theme/common/flags/tg.png index f7e56dfd15c..aef3d9f2160 100644 Binary files a/htdocs/theme/common/flags/tg.png and b/htdocs/theme/common/flags/tg.png differ diff --git a/htdocs/theme/common/flags/th.png b/htdocs/theme/common/flags/th.png index 3f8a2881717..c0c7a6862a1 100644 Binary files a/htdocs/theme/common/flags/th.png and b/htdocs/theme/common/flags/th.png differ diff --git a/htdocs/theme/common/flags/tj.png b/htdocs/theme/common/flags/tj.png index 9f4c51f9180..2dc4a0d1c06 100644 Binary files a/htdocs/theme/common/flags/tj.png and b/htdocs/theme/common/flags/tj.png differ diff --git a/htdocs/theme/common/flags/tk.png b/htdocs/theme/common/flags/tk.png index e88b300b03d..218413dda9a 100644 Binary files a/htdocs/theme/common/flags/tk.png and b/htdocs/theme/common/flags/tk.png differ diff --git a/htdocs/theme/common/flags/tl.png b/htdocs/theme/common/flags/tl.png index de0e052e0d3..5644f94cb7b 100644 Binary files a/htdocs/theme/common/flags/tl.png and b/htdocs/theme/common/flags/tl.png differ diff --git a/htdocs/theme/common/flags/tm.png b/htdocs/theme/common/flags/tm.png index 48ce59a5d05..a9c6edbdea9 100644 Binary files a/htdocs/theme/common/flags/tm.png and b/htdocs/theme/common/flags/tm.png differ diff --git a/htdocs/theme/common/flags/tn.png b/htdocs/theme/common/flags/tn.png index 7c04f551291..cc727ab9caf 100644 Binary files a/htdocs/theme/common/flags/tn.png and b/htdocs/theme/common/flags/tn.png differ diff --git a/htdocs/theme/common/flags/to.png b/htdocs/theme/common/flags/to.png index 4df011126a8..6f5fe0482f5 100644 Binary files a/htdocs/theme/common/flags/to.png and b/htdocs/theme/common/flags/to.png differ diff --git a/htdocs/theme/common/flags/tr.png b/htdocs/theme/common/flags/tr.png index 65f8d79b85f..2031bed4dac 100644 Binary files a/htdocs/theme/common/flags/tr.png and b/htdocs/theme/common/flags/tr.png differ diff --git a/htdocs/theme/common/flags/trans.png b/htdocs/theme/common/flags/trans.png index f1013d8f8e6..e001b642ee8 100644 Binary files a/htdocs/theme/common/flags/trans.png and b/htdocs/theme/common/flags/trans.png differ diff --git a/htdocs/theme/common/flags/tt.png b/htdocs/theme/common/flags/tt.png index 4e18707a77e..d280e2c7f5d 100644 Binary files a/htdocs/theme/common/flags/tt.png and b/htdocs/theme/common/flags/tt.png differ diff --git a/htdocs/theme/common/flags/tv.png b/htdocs/theme/common/flags/tv.png index 2e9be7d53f2..4746c382843 100644 Binary files a/htdocs/theme/common/flags/tv.png and b/htdocs/theme/common/flags/tv.png differ diff --git a/htdocs/theme/common/flags/tw.png b/htdocs/theme/common/flags/tw.png index 310d7a90d6d..a99e1d04c5e 100644 Binary files a/htdocs/theme/common/flags/tw.png and b/htdocs/theme/common/flags/tw.png differ diff --git a/htdocs/theme/common/flags/tz.png b/htdocs/theme/common/flags/tz.png index dbbd00195a1..39a7d21dbe7 100644 Binary files a/htdocs/theme/common/flags/tz.png and b/htdocs/theme/common/flags/tz.png differ diff --git a/htdocs/theme/common/flags/ua.png b/htdocs/theme/common/flags/ua.png index 70eaac3a3cf..f544c6ec27e 100644 Binary files a/htdocs/theme/common/flags/ua.png and b/htdocs/theme/common/flags/ua.png differ diff --git a/htdocs/theme/common/flags/ug.png b/htdocs/theme/common/flags/ug.png index 6f08c4f4cca..2c1674828ef 100644 Binary files a/htdocs/theme/common/flags/ug.png and b/htdocs/theme/common/flags/ug.png differ diff --git a/htdocs/theme/common/flags/uk.png b/htdocs/theme/common/flags/uk.png index 8161f0727fa..025009e2045 100644 Binary files a/htdocs/theme/common/flags/uk.png and b/htdocs/theme/common/flags/uk.png differ diff --git a/htdocs/theme/common/flags/um.png b/htdocs/theme/common/flags/um.png index 30b7a177993..fd5ea83a9c5 100644 Binary files a/htdocs/theme/common/flags/um.png and b/htdocs/theme/common/flags/um.png differ diff --git a/htdocs/theme/common/flags/us.png b/htdocs/theme/common/flags/us.png index d508607184e..e6eeb28549e 100644 Binary files a/htdocs/theme/common/flags/us.png and b/htdocs/theme/common/flags/us.png differ diff --git a/htdocs/theme/common/flags/uy.png b/htdocs/theme/common/flags/uy.png index 7cb393c0460..45dd4d970b3 100644 Binary files a/htdocs/theme/common/flags/uy.png and b/htdocs/theme/common/flags/uy.png differ diff --git a/htdocs/theme/common/flags/uz.png b/htdocs/theme/common/flags/uz.png index 15772a3a1be..7735ae170e7 100644 Binary files a/htdocs/theme/common/flags/uz.png and b/htdocs/theme/common/flags/uz.png differ diff --git a/htdocs/theme/common/flags/va.png b/htdocs/theme/common/flags/va.png index 5068cf96360..2394c5ebf18 100644 Binary files a/htdocs/theme/common/flags/va.png and b/htdocs/theme/common/flags/va.png differ diff --git a/htdocs/theme/common/flags/vc.png b/htdocs/theme/common/flags/vc.png index 37c5a127d35..0e7806f989c 100644 Binary files a/htdocs/theme/common/flags/vc.png and b/htdocs/theme/common/flags/vc.png differ diff --git a/htdocs/theme/common/flags/ve.png b/htdocs/theme/common/flags/ve.png index 2371233789c..806d76b8997 100644 Binary files a/htdocs/theme/common/flags/ve.png and b/htdocs/theme/common/flags/ve.png differ diff --git a/htdocs/theme/common/flags/vg.png b/htdocs/theme/common/flags/vg.png index ca0ab404194..222f6b7d9bd 100644 Binary files a/htdocs/theme/common/flags/vg.png and b/htdocs/theme/common/flags/vg.png differ diff --git a/htdocs/theme/common/flags/vi.png b/htdocs/theme/common/flags/vi.png index 570f143f374..b5d4222764c 100644 Binary files a/htdocs/theme/common/flags/vi.png and b/htdocs/theme/common/flags/vi.png differ diff --git a/htdocs/theme/common/flags/vn.png b/htdocs/theme/common/flags/vn.png index fb751baa218..11b4ae710bb 100644 Binary files a/htdocs/theme/common/flags/vn.png and b/htdocs/theme/common/flags/vn.png differ diff --git a/htdocs/theme/common/flags/vu.png b/htdocs/theme/common/flags/vu.png index f6402874364..31aa37ec304 100644 Binary files a/htdocs/theme/common/flags/vu.png and b/htdocs/theme/common/flags/vu.png differ diff --git a/htdocs/theme/common/flags/wales.png b/htdocs/theme/common/flags/wales.png index b05cb3d595c..6b141e1d412 100644 Binary files a/htdocs/theme/common/flags/wales.png and b/htdocs/theme/common/flags/wales.png differ diff --git a/htdocs/theme/common/flags/wf.png b/htdocs/theme/common/flags/wf.png index 7576aff6efc..1c99bdcf71a 100644 Binary files a/htdocs/theme/common/flags/wf.png and b/htdocs/theme/common/flags/wf.png differ diff --git a/htdocs/theme/common/flags/ws.png b/htdocs/theme/common/flags/ws.png index 30ca42ba8b9..287482db540 100644 Binary files a/htdocs/theme/common/flags/ws.png and b/htdocs/theme/common/flags/ws.png differ diff --git a/htdocs/theme/common/flags/ye.png b/htdocs/theme/common/flags/ye.png index 5b36464d389..ede2401cf0a 100644 Binary files a/htdocs/theme/common/flags/ye.png and b/htdocs/theme/common/flags/ye.png differ diff --git a/htdocs/theme/common/flags/yt.png b/htdocs/theme/common/flags/yt.png index 3c1bc99da3f..fb9c3669c13 100644 Binary files a/htdocs/theme/common/flags/yt.png and b/htdocs/theme/common/flags/yt.png differ diff --git a/htdocs/theme/common/flags/za.png b/htdocs/theme/common/flags/za.png index 25607ebbe8e..070aec4cd57 100644 Binary files a/htdocs/theme/common/flags/za.png and b/htdocs/theme/common/flags/za.png differ diff --git a/htdocs/theme/common/flags/zm.png b/htdocs/theme/common/flags/zm.png index a9705c6f32d..bcce6de9380 100644 Binary files a/htdocs/theme/common/flags/zm.png and b/htdocs/theme/common/flags/zm.png differ diff --git a/htdocs/theme/common/flags/zw.png b/htdocs/theme/common/flags/zw.png index 11f9b917352..62d6988aaee 100644 Binary files a/htdocs/theme/common/flags/zw.png and b/htdocs/theme/common/flags/zw.png differ diff --git a/htdocs/theme/common/folder-new.png b/htdocs/theme/common/folder-new.png index fcd15c01849..fdeea131de2 100644 Binary files a/htdocs/theme/common/folder-new.png and b/htdocs/theme/common/folder-new.png differ diff --git a/htdocs/theme/common/gmap.png b/htdocs/theme/common/gmap.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/help.png b/htdocs/theme/common/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/common/help.png and b/htdocs/theme/common/help.png differ diff --git a/htdocs/theme/common/mime/archive.png b/htdocs/theme/common/mime/archive.png index 6461fbc76e3..b15510e30dd 100644 Binary files a/htdocs/theme/common/mime/archive.png and b/htdocs/theme/common/mime/archive.png differ diff --git a/htdocs/theme/common/mime/css.png b/htdocs/theme/common/mime/css.png old mode 100755 new mode 100644 index 5c2881cb3b3..21398610778 Binary files a/htdocs/theme/common/mime/css.png and b/htdocs/theme/common/mime/css.png differ diff --git a/htdocs/theme/common/mime/doc.png b/htdocs/theme/common/mime/doc.png index 15c47fd7390..efb194dcfd2 100644 Binary files a/htdocs/theme/common/mime/doc.png and b/htdocs/theme/common/mime/doc.png differ diff --git a/htdocs/theme/common/mime/dotnet.png b/htdocs/theme/common/mime/dotnet.png old mode 100755 new mode 100644 index d1f9b3bb524..08ec78c2c17 Binary files a/htdocs/theme/common/mime/dotnet.png and b/htdocs/theme/common/mime/dotnet.png differ diff --git a/htdocs/theme/common/mime/encrypt.png b/htdocs/theme/common/mime/encrypt.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/mime/flash.png b/htdocs/theme/common/mime/flash.png index de944582b26..ac3b89e0aac 100644 Binary files a/htdocs/theme/common/mime/flash.png and b/htdocs/theme/common/mime/flash.png differ diff --git a/htdocs/theme/common/mime/glasses.png b/htdocs/theme/common/mime/glasses.png old mode 100755 new mode 100644 index 36224141277..be153e04d45 Binary files a/htdocs/theme/common/mime/glasses.png and b/htdocs/theme/common/mime/glasses.png differ diff --git a/htdocs/theme/common/mime/html.png b/htdocs/theme/common/mime/html.png index 318ff6f8d89..70b5e5a31af 100644 Binary files a/htdocs/theme/common/mime/html.png and b/htdocs/theme/common/mime/html.png differ diff --git a/htdocs/theme/common/mime/image.png b/htdocs/theme/common/mime/image.png index 076e61a1509..dbb1b823b10 100644 Binary files a/htdocs/theme/common/mime/image.png and b/htdocs/theme/common/mime/image.png differ diff --git a/htdocs/theme/common/mime/jnlp.png b/htdocs/theme/common/mime/jnlp.png old mode 100755 new mode 100644 index 2b36ee032e9..d53b7d0cdc7 Binary files a/htdocs/theme/common/mime/jnlp.png and b/htdocs/theme/common/mime/jnlp.png differ diff --git a/htdocs/theme/common/mime/jscript.png b/htdocs/theme/common/mime/jscript.png index 416e505775e..af8f13ccc12 100644 Binary files a/htdocs/theme/common/mime/jscript.png and b/htdocs/theme/common/mime/jscript.png differ diff --git a/htdocs/theme/common/mime/library.png b/htdocs/theme/common/mime/library.png old mode 100755 new mode 100644 index 05aad8e1515..25f1df113ed Binary files a/htdocs/theme/common/mime/library.png and b/htdocs/theme/common/mime/library.png differ diff --git a/htdocs/theme/common/mime/lit.png b/htdocs/theme/common/mime/lit.png old mode 100755 new mode 100644 index 88ae1fee882..4804e9fbffa Binary files a/htdocs/theme/common/mime/lit.png and b/htdocs/theme/common/mime/lit.png differ diff --git a/htdocs/theme/common/mime/mdb.png b/htdocs/theme/common/mime/mdb.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/mime/notavailable.png b/htdocs/theme/common/mime/notavailable.png index 05ff3180a72..b1a4d2e47ac 100644 Binary files a/htdocs/theme/common/mime/notavailable.png and b/htdocs/theme/common/mime/notavailable.png differ diff --git a/htdocs/theme/common/mime/ooffice.png b/htdocs/theme/common/mime/ooffice.png old mode 100755 new mode 100644 index f10e8b49b5d..d5080edc26c Binary files a/htdocs/theme/common/mime/ooffice.png and b/htdocs/theme/common/mime/ooffice.png differ diff --git a/htdocs/theme/common/mime/other.png b/htdocs/theme/common/mime/other.png index edc21d6d8a2..6256a7fc753 100644 Binary files a/htdocs/theme/common/mime/other.png and b/htdocs/theme/common/mime/other.png differ diff --git a/htdocs/theme/common/mime/page.png b/htdocs/theme/common/mime/page.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/mime/pdf.png b/htdocs/theme/common/mime/pdf.png index 9d9e0341d65..8c234ade6d5 100644 Binary files a/htdocs/theme/common/mime/pdf.png and b/htdocs/theme/common/mime/pdf.png differ diff --git a/htdocs/theme/common/mime/pl.png b/htdocs/theme/common/mime/pl.png index 95deeffb138..c8460bb2a03 100644 Binary files a/htdocs/theme/common/mime/pl.png and b/htdocs/theme/common/mime/pl.png differ diff --git a/htdocs/theme/common/mime/ppt.png b/htdocs/theme/common/mime/ppt.png index 44a9407290e..71a41fa4559 100644 Binary files a/htdocs/theme/common/mime/ppt.png and b/htdocs/theme/common/mime/ppt.png differ diff --git a/htdocs/theme/common/mime/rss.png b/htdocs/theme/common/mime/rss.png old mode 100755 new mode 100644 index 4403674b8f1..6ef8b252969 Binary files a/htdocs/theme/common/mime/rss.png and b/htdocs/theme/common/mime/rss.png differ diff --git a/htdocs/theme/common/mime/script.png b/htdocs/theme/common/mime/script.png index 991d7aef1ec..161f7707816 100644 Binary files a/htdocs/theme/common/mime/script.png and b/htdocs/theme/common/mime/script.png differ diff --git a/htdocs/theme/common/mime/svg.png b/htdocs/theme/common/mime/svg.png index d98de4c5301..6c627890259 100644 Binary files a/htdocs/theme/common/mime/svg.png and b/htdocs/theme/common/mime/svg.png differ diff --git a/htdocs/theme/common/mime/text.png b/htdocs/theme/common/mime/text.png index 72a36218af4..cbefa2a14dc 100644 Binary files a/htdocs/theme/common/mime/text.png and b/htdocs/theme/common/mime/text.png differ diff --git a/htdocs/theme/common/mime/ttf.png b/htdocs/theme/common/mime/ttf.png index f3cc58c2a3c..4c258eb0b99 100644 Binary files a/htdocs/theme/common/mime/ttf.png and b/htdocs/theme/common/mime/ttf.png differ diff --git a/htdocs/theme/common/mime/xls.png b/htdocs/theme/common/mime/xls.png index 27f53be8f31..211ab0b0904 100644 Binary files a/htdocs/theme/common/mime/xls.png and b/htdocs/theme/common/mime/xls.png differ diff --git a/htdocs/theme/common/nophoto.jpg b/htdocs/theme/common/nophoto.jpg index 7e2872a1aff..14eeb1cf01f 100644 Binary files a/htdocs/theme/common/nophoto.jpg and b/htdocs/theme/common/nophoto.jpg differ diff --git a/htdocs/theme/common/paypal.png b/htdocs/theme/common/paypal.png index 523ee9dcf78..d5705c8bbb9 100644 Binary files a/htdocs/theme/common/paypal.png and b/htdocs/theme/common/paypal.png differ diff --git a/htdocs/theme/common/redstar.png b/htdocs/theme/common/redstar.png index 001cde58667..486fd6770a2 100644 Binary files a/htdocs/theme/common/redstar.png and b/htdocs/theme/common/redstar.png differ diff --git a/htdocs/theme/common/skype_callbutton.png b/htdocs/theme/common/skype_callbutton.png index 79ee7963fc4..dd76442627a 100644 Binary files a/htdocs/theme/common/skype_callbutton.png and b/htdocs/theme/common/skype_callbutton.png differ diff --git a/htdocs/theme/common/skype_chatbutton.png b/htdocs/theme/common/skype_chatbutton.png index 788c31fec21..750b49fa221 100644 Binary files a/htdocs/theme/common/skype_chatbutton.png and b/htdocs/theme/common/skype_chatbutton.png differ diff --git a/htdocs/theme/common/transform-crop-and-resize.png b/htdocs/theme/common/transform-crop-and-resize.png index 8cef80a232d..72512db6cd7 100644 Binary files a/htdocs/theme/common/transform-crop-and-resize.png and b/htdocs/theme/common/transform-crop-and-resize.png differ diff --git a/htdocs/theme/common/treemenu/folder2-expanded.png b/htdocs/theme/common/treemenu/folder2-expanded.png old mode 100755 new mode 100644 index 4e3548352fc..21b1cda2363 Binary files a/htdocs/theme/common/treemenu/folder2-expanded.png and b/htdocs/theme/common/treemenu/folder2-expanded.png differ diff --git a/htdocs/theme/common/treemenu/folder2.png b/htdocs/theme/common/treemenu/folder2.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/view-refresh.png b/htdocs/theme/common/view-refresh.png index 606ea9eba46..d5e3dbd4782 100644 Binary files a/htdocs/theme/common/view-refresh.png and b/htdocs/theme/common/view-refresh.png differ diff --git a/htdocs/theme/common/weather/weather-clear-night.png b/htdocs/theme/common/weather/weather-clear-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-clear.png b/htdocs/theme/common/weather/weather-clear.png old mode 100755 new mode 100644 index b7cc930c761..8b5c71297be Binary files a/htdocs/theme/common/weather/weather-clear.png and b/htdocs/theme/common/weather/weather-clear.png differ diff --git a/htdocs/theme/common/weather/weather-clouds-night.png b/htdocs/theme/common/weather/weather-clouds-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-clouds.png b/htdocs/theme/common/weather/weather-clouds.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-few-clouds-night.png b/htdocs/theme/common/weather/weather-few-clouds-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-few-clouds.png b/htdocs/theme/common/weather/weather-few-clouds.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-freezing-rain.png b/htdocs/theme/common/weather/weather-freezing-rain.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-hail.png b/htdocs/theme/common/weather/weather-hail.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-many-clouds.png b/htdocs/theme/common/weather/weather-many-clouds.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-mist.png b/htdocs/theme/common/weather/weather-mist.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-day.png b/htdocs/theme/common/weather/weather-showers-day.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-night.png b/htdocs/theme/common/weather/weather-showers-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-scattered-day.png b/htdocs/theme/common/weather/weather-showers-scattered-day.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-scattered-night.png b/htdocs/theme/common/weather/weather-showers-scattered-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers-scattered.png b/htdocs/theme/common/weather/weather-showers-scattered.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-showers.png b/htdocs/theme/common/weather/weather-showers.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow-rain.png b/htdocs/theme/common/weather/weather-snow-rain.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow-scattered-day.png b/htdocs/theme/common/weather/weather-snow-scattered-day.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow-scattered-night.png b/htdocs/theme/common/weather/weather-snow-scattered-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow-scattered.png b/htdocs/theme/common/weather/weather-snow-scattered.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-snow.png b/htdocs/theme/common/weather/weather-snow.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-storm-day.png b/htdocs/theme/common/weather/weather-storm-day.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-storm-night.png b/htdocs/theme/common/weather/weather-storm-night.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/common/weather/weather-storm.png b/htdocs/theme/common/weather/weather-storm.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/dolibarr.png b/htdocs/theme/dolibarr.png old mode 100755 new mode 100644 index dbac590012f..691fc3d68a9 Binary files a/htdocs/theme/dolibarr.png and b/htdocs/theme/dolibarr.png differ diff --git a/htdocs/theme/dolibarr_logo.png b/htdocs/theme/dolibarr_logo.png old mode 100755 new mode 100644 index 5c361732926..3ee46b51553 Binary files a/htdocs/theme/dolibarr_logo.png and b/htdocs/theme/dolibarr_logo.png differ diff --git a/htdocs/theme/doliforge_logo.png b/htdocs/theme/doliforge_logo.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/dolistore_logo.png b/htdocs/theme/dolistore_logo.png old mode 100755 new mode 100644 index 76ff5ac1535..38642add7b5 Binary files a/htdocs/theme/dolistore_logo.png and b/htdocs/theme/dolistore_logo.png differ diff --git a/htdocs/theme/eldy/img/1downarrow.png b/htdocs/theme/eldy/img/1downarrow.png index d61271211de..1d134ab3e4e 100644 Binary files a/htdocs/theme/eldy/img/1downarrow.png and b/htdocs/theme/eldy/img/1downarrow.png differ diff --git a/htdocs/theme/eldy/img/1leftarrow.png b/htdocs/theme/eldy/img/1leftarrow.png index 123d94357ce..554cdc3d76c 100644 Binary files a/htdocs/theme/eldy/img/1leftarrow.png and b/htdocs/theme/eldy/img/1leftarrow.png differ diff --git a/htdocs/theme/eldy/img/1leftarrow_selected.png b/htdocs/theme/eldy/img/1leftarrow_selected.png index 123d94357ce..554cdc3d76c 100644 Binary files a/htdocs/theme/eldy/img/1leftarrow_selected.png and b/htdocs/theme/eldy/img/1leftarrow_selected.png differ diff --git a/htdocs/theme/eldy/img/1rightarrow.png b/htdocs/theme/eldy/img/1rightarrow.png index 06559cea65f..95fdc377ee9 100644 Binary files a/htdocs/theme/eldy/img/1rightarrow.png and b/htdocs/theme/eldy/img/1rightarrow.png differ diff --git a/htdocs/theme/eldy/img/1rightarrow_selected.png b/htdocs/theme/eldy/img/1rightarrow_selected.png index 06559cea65f..95fdc377ee9 100644 Binary files a/htdocs/theme/eldy/img/1rightarrow_selected.png and b/htdocs/theme/eldy/img/1rightarrow_selected.png differ diff --git a/htdocs/theme/eldy/img/1uparrow.png b/htdocs/theme/eldy/img/1uparrow.png index b40cb15977a..70ea061dc5e 100644 Binary files a/htdocs/theme/eldy/img/1uparrow.png and b/htdocs/theme/eldy/img/1uparrow.png differ diff --git a/htdocs/theme/eldy/img/1updownarrow.png b/htdocs/theme/eldy/img/1updownarrow.png index fd5e5801aea..871ac1c1f29 100644 Binary files a/htdocs/theme/eldy/img/1updownarrow.png and b/htdocs/theme/eldy/img/1updownarrow.png differ diff --git a/htdocs/theme/eldy/img/addfile.png b/htdocs/theme/eldy/img/addfile.png index 3bfa627d758..1cb7af0ad8a 100644 Binary files a/htdocs/theme/eldy/img/addfile.png and b/htdocs/theme/eldy/img/addfile.png differ diff --git a/htdocs/theme/eldy/img/bg-bas-rubrique.png b/htdocs/theme/eldy/img/bg-bas-rubrique.png index bb1e5ecd0a5..af8483f8746 100644 Binary files a/htdocs/theme/eldy/img/bg-bas-rubrique.png and b/htdocs/theme/eldy/img/bg-bas-rubrique.png differ diff --git a/htdocs/theme/eldy/img/bg-rubrique.png b/htdocs/theme/eldy/img/bg-rubrique.png index 1678c8536fb..0eb3cc2603c 100644 Binary files a/htdocs/theme/eldy/img/bg-rubrique.png and b/htdocs/theme/eldy/img/bg-rubrique.png differ diff --git a/htdocs/theme/eldy/img/bg-titre-rubrique.png b/htdocs/theme/eldy/img/bg-titre-rubrique.png index c0091701b16..17b35d88823 100644 Binary files a/htdocs/theme/eldy/img/bg-titre-rubrique.png and b/htdocs/theme/eldy/img/bg-titre-rubrique.png differ diff --git a/htdocs/theme/eldy/img/button_edit.png b/htdocs/theme/eldy/img/button_edit.png index ce8b226710b..894b4cfd78e 100644 Binary files a/htdocs/theme/eldy/img/button_edit.png and b/htdocs/theme/eldy/img/button_edit.png differ diff --git a/htdocs/theme/eldy/img/calc.png b/htdocs/theme/eldy/img/calc.png index d3bd2bbc824..5e6471408d8 100644 Binary files a/htdocs/theme/eldy/img/calc.png and b/htdocs/theme/eldy/img/calc.png differ diff --git a/htdocs/theme/eldy/img/calendar.png b/htdocs/theme/eldy/img/calendar.png index 90829a353c3..bbe6c27f041 100644 Binary files a/htdocs/theme/eldy/img/calendar.png and b/htdocs/theme/eldy/img/calendar.png differ diff --git a/htdocs/theme/eldy/img/call.png b/htdocs/theme/eldy/img/call.png index 8315c57d61d..ddfc1b7bd90 100644 Binary files a/htdocs/theme/eldy/img/call.png and b/htdocs/theme/eldy/img/call.png differ diff --git a/htdocs/theme/eldy/img/call_out.png b/htdocs/theme/eldy/img/call_out.png index bf972d8b1ae..b5a22eb827b 100644 Binary files a/htdocs/theme/eldy/img/call_out.png and b/htdocs/theme/eldy/img/call_out.png differ diff --git a/htdocs/theme/eldy/img/close.png b/htdocs/theme/eldy/img/close.png index aacac9fc423..ec4338e8bca 100644 Binary files a/htdocs/theme/eldy/img/close.png and b/htdocs/theme/eldy/img/close.png differ diff --git a/htdocs/theme/eldy/img/close_title.png b/htdocs/theme/eldy/img/close_title.png index 24eda772954..bebb74d9861 100644 Binary files a/htdocs/theme/eldy/img/close_title.png and b/htdocs/theme/eldy/img/close_title.png differ diff --git a/htdocs/theme/eldy/img/delete.png b/htdocs/theme/eldy/img/delete.png index 221cd3c76b9..8ad73597be7 100644 Binary files a/htdocs/theme/eldy/img/delete.png and b/htdocs/theme/eldy/img/delete.png differ diff --git a/htdocs/theme/eldy/img/detail.png b/htdocs/theme/eldy/img/detail.png index 2d31ec2202e..05562bef842 100644 Binary files a/htdocs/theme/eldy/img/detail.png and b/htdocs/theme/eldy/img/detail.png differ diff --git a/htdocs/theme/eldy/img/disable.png b/htdocs/theme/eldy/img/disable.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/eldy/img/disable.png and b/htdocs/theme/eldy/img/disable.png differ diff --git a/htdocs/theme/eldy/img/edit.png b/htdocs/theme/eldy/img/edit.png index d5ef04577cc..4e916fe1fb0 100644 Binary files a/htdocs/theme/eldy/img/edit.png and b/htdocs/theme/eldy/img/edit.png differ diff --git a/htdocs/theme/eldy/img/edit_add.png b/htdocs/theme/eldy/img/edit_add.png index f6e67164208..ae205e9d770 100644 Binary files a/htdocs/theme/eldy/img/edit_add.png and b/htdocs/theme/eldy/img/edit_add.png differ diff --git a/htdocs/theme/eldy/img/edit_remove.png b/htdocs/theme/eldy/img/edit_remove.png index 0c7ca54fa1f..bc4bdb360fa 100644 Binary files a/htdocs/theme/eldy/img/edit_remove.png and b/htdocs/theme/eldy/img/edit_remove.png differ diff --git a/htdocs/theme/eldy/img/editdelete.png b/htdocs/theme/eldy/img/editdelete.png index 6abca6e2acb..f8c84994d47 100644 Binary files a/htdocs/theme/eldy/img/editdelete.png and b/htdocs/theme/eldy/img/editdelete.png differ diff --git a/htdocs/theme/eldy/img/file.png b/htdocs/theme/eldy/img/file.png index 98bc98d2f1f..73c66e9b2b3 100644 Binary files a/htdocs/theme/eldy/img/file.png and b/htdocs/theme/eldy/img/file.png differ diff --git a/htdocs/theme/eldy/img/filenew.png b/htdocs/theme/eldy/img/filenew.png index 1f6581389d1..8680cce82bf 100644 Binary files a/htdocs/theme/eldy/img/filenew.png and b/htdocs/theme/eldy/img/filenew.png differ diff --git a/htdocs/theme/eldy/img/filter.png b/htdocs/theme/eldy/img/filter.png index 4baa3a3be8e..917715107bd 100644 Binary files a/htdocs/theme/eldy/img/filter.png and b/htdocs/theme/eldy/img/filter.png differ diff --git a/htdocs/theme/eldy/img/folder-open.png b/htdocs/theme/eldy/img/folder-open.png index 1687cd1b536..1db8369b3d5 100644 Binary files a/htdocs/theme/eldy/img/folder-open.png and b/htdocs/theme/eldy/img/folder-open.png differ diff --git a/htdocs/theme/eldy/img/folder.png b/htdocs/theme/eldy/img/folder.png index 908a6df9348..04a24af2e22 100644 Binary files a/htdocs/theme/eldy/img/folder.png and b/htdocs/theme/eldy/img/folder.png differ diff --git a/htdocs/theme/eldy/img/grip.png b/htdocs/theme/eldy/img/grip.png index 216e51ca8f0..8053007e9dd 100644 Binary files a/htdocs/theme/eldy/img/grip.png and b/htdocs/theme/eldy/img/grip.png differ diff --git a/htdocs/theme/eldy/img/grip_title.png b/htdocs/theme/eldy/img/grip_title.png index 9b3c093c790..d6ecce335cb 100644 Binary files a/htdocs/theme/eldy/img/grip_title.png and b/htdocs/theme/eldy/img/grip_title.png differ diff --git a/htdocs/theme/eldy/img/headbg.jpg b/htdocs/theme/eldy/img/headbg.jpg index 7d1374e1fc9..160821354cc 100644 Binary files a/htdocs/theme/eldy/img/headbg.jpg and b/htdocs/theme/eldy/img/headbg.jpg differ diff --git a/htdocs/theme/eldy/img/headbg2.jpg b/htdocs/theme/eldy/img/headbg2.jpg index 7917abd9c07..0bc44f0ea99 100644 Binary files a/htdocs/theme/eldy/img/headbg2.jpg and b/htdocs/theme/eldy/img/headbg2.jpg differ diff --git a/htdocs/theme/eldy/img/help.png b/htdocs/theme/eldy/img/help.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/eldy/img/help.png and b/htdocs/theme/eldy/img/help.png differ diff --git a/htdocs/theme/eldy/img/high.png b/htdocs/theme/eldy/img/high.png index f893de7abf3..c0eaee6542f 100644 Binary files a/htdocs/theme/eldy/img/high.png and b/htdocs/theme/eldy/img/high.png differ diff --git a/htdocs/theme/eldy/img/history.png b/htdocs/theme/eldy/img/history.png index 932921c1f4c..0fa4283476b 100644 Binary files a/htdocs/theme/eldy/img/history.png and b/htdocs/theme/eldy/img/history.png differ diff --git a/htdocs/theme/eldy/img/info.png b/htdocs/theme/eldy/img/info.png index 0f716f67711..12e6cd655d6 100644 Binary files a/htdocs/theme/eldy/img/info.png and b/htdocs/theme/eldy/img/info.png differ diff --git a/htdocs/theme/eldy/img/liste_titre.png b/htdocs/theme/eldy/img/liste_titre.png index 7405550c080..a58ee63e1b6 100644 Binary files a/htdocs/theme/eldy/img/liste_titre.png and b/htdocs/theme/eldy/img/liste_titre.png differ diff --git a/htdocs/theme/eldy/img/liste_titre2.png b/htdocs/theme/eldy/img/liste_titre2.png old mode 100755 new mode 100644 diff --git a/htdocs/theme/eldy/img/lock.png b/htdocs/theme/eldy/img/lock.png index 8c2e2cbdb09..3d99cf1eaef 100644 Binary files a/htdocs/theme/eldy/img/lock.png and b/htdocs/theme/eldy/img/lock.png differ diff --git a/htdocs/theme/eldy/img/login_background.png b/htdocs/theme/eldy/img/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/eldy/img/login_background.png and b/htdocs/theme/eldy/img/login_background.png differ diff --git a/htdocs/theme/eldy/img/menus/agenda.png b/htdocs/theme/eldy/img/menus/agenda.png index 2bea3152a10..866037c9b54 100644 Binary files a/htdocs/theme/eldy/img/menus/agenda.png and b/htdocs/theme/eldy/img/menus/agenda.png differ diff --git a/htdocs/theme/eldy/img/menus/bank.png b/htdocs/theme/eldy/img/menus/bank.png index 225df251041..9c6300eae32 100644 Binary files a/htdocs/theme/eldy/img/menus/bank.png and b/htdocs/theme/eldy/img/menus/bank.png differ diff --git a/htdocs/theme/eldy/img/menus/commercial.png b/htdocs/theme/eldy/img/menus/commercial.png index e520f7eb71e..efc1b3f0608 100644 Binary files a/htdocs/theme/eldy/img/menus/commercial.png and b/htdocs/theme/eldy/img/menus/commercial.png differ diff --git a/htdocs/theme/eldy/img/menus/externalsite.png b/htdocs/theme/eldy/img/menus/externalsite.png index 73fef8ae4c8..0bf9138d463 100644 Binary files a/htdocs/theme/eldy/img/menus/externalsite.png and b/htdocs/theme/eldy/img/menus/externalsite.png differ diff --git a/htdocs/theme/eldy/img/menus/generic3.png b/htdocs/theme/eldy/img/menus/generic3.png index d3ed4fa89b3..e22f73aa6f9 100644 Binary files a/htdocs/theme/eldy/img/menus/generic3.png and b/htdocs/theme/eldy/img/menus/generic3.png differ diff --git a/htdocs/theme/eldy/img/menus/holiday.png b/htdocs/theme/eldy/img/menus/holiday.png index 27b653d93ba..42c519aa63d 100644 Binary files a/htdocs/theme/eldy/img/menus/holiday.png and b/htdocs/theme/eldy/img/menus/holiday.png differ diff --git a/htdocs/theme/eldy/img/menus/home.png b/htdocs/theme/eldy/img/menus/home.png index eec3240070b..f4d0d917d1f 100644 Binary files a/htdocs/theme/eldy/img/menus/home.png and b/htdocs/theme/eldy/img/menus/home.png differ diff --git a/htdocs/theme/eldy/img/menus/mail.png b/htdocs/theme/eldy/img/menus/mail.png index 0877bf47cba..39434770f60 100644 Binary files a/htdocs/theme/eldy/img/menus/mail.png and b/htdocs/theme/eldy/img/menus/mail.png differ diff --git a/htdocs/theme/eldy/img/menus/project.png b/htdocs/theme/eldy/img/menus/project.png index 5bc0f86b4be..882235d2cd3 100644 Binary files a/htdocs/theme/eldy/img/menus/project.png and b/htdocs/theme/eldy/img/menus/project.png differ diff --git a/htdocs/theme/eldy/img/menus/shop.png b/htdocs/theme/eldy/img/menus/shop.png index 5b39ee81ea3..efd6859ab60 100644 Binary files a/htdocs/theme/eldy/img/menus/shop.png and b/htdocs/theme/eldy/img/menus/shop.png differ diff --git a/htdocs/theme/eldy/img/menutab-r.png b/htdocs/theme/eldy/img/menutab-r.png index d841ad40d19..95c2324b612 100644 Binary files a/htdocs/theme/eldy/img/menutab-r.png and b/htdocs/theme/eldy/img/menutab-r.png differ diff --git a/htdocs/theme/eldy/img/nav-overlay.png b/htdocs/theme/eldy/img/nav-overlay.png index 595f026cc24..82d159c6ec0 100644 Binary files a/htdocs/theme/eldy/img/nav-overlay.png and b/htdocs/theme/eldy/img/nav-overlay.png differ diff --git a/htdocs/theme/eldy/img/nav-overlay3.png b/htdocs/theme/eldy/img/nav-overlay3.png index f252f5f51a5..3d73145dab7 100644 Binary files a/htdocs/theme/eldy/img/nav-overlay3.png and b/htdocs/theme/eldy/img/nav-overlay3.png differ diff --git a/htdocs/theme/eldy/img/object_action.png b/htdocs/theme/eldy/img/object_action.png index dd356305161..001b0cf9b76 100644 Binary files a/htdocs/theme/eldy/img/object_action.png and b/htdocs/theme/eldy/img/object_action.png differ diff --git a/htdocs/theme/eldy/img/object_action_rdv.png b/htdocs/theme/eldy/img/object_action_rdv.png index b892da1f655..25edfa85b45 100644 Binary files a/htdocs/theme/eldy/img/object_action_rdv.png and b/htdocs/theme/eldy/img/object_action_rdv.png differ diff --git a/htdocs/theme/eldy/img/object_address.png b/htdocs/theme/eldy/img/object_address.png index b20734da69a..a4b878966dc 100644 Binary files a/htdocs/theme/eldy/img/object_address.png and b/htdocs/theme/eldy/img/object_address.png differ diff --git a/htdocs/theme/eldy/img/object_barcode.png b/htdocs/theme/eldy/img/object_barcode.png index 83d3e1ae993..6f1931ab96c 100644 Binary files a/htdocs/theme/eldy/img/object_barcode.png and b/htdocs/theme/eldy/img/object_barcode.png differ diff --git a/htdocs/theme/eldy/img/object_billd.png b/htdocs/theme/eldy/img/object_billd.png index 3c7443cba3e..2080958f0fb 100644 Binary files a/htdocs/theme/eldy/img/object_billd.png and b/htdocs/theme/eldy/img/object_billd.png differ diff --git a/htdocs/theme/eldy/img/object_billr.png b/htdocs/theme/eldy/img/object_billr.png index c89098beaa5..7a9692a0804 100644 Binary files a/htdocs/theme/eldy/img/object_billr.png and b/htdocs/theme/eldy/img/object_billr.png differ diff --git a/htdocs/theme/eldy/img/object_book.png b/htdocs/theme/eldy/img/object_book.png index 67f6b06467d..85097420728 100644 Binary files a/htdocs/theme/eldy/img/object_book.png and b/htdocs/theme/eldy/img/object_book.png differ diff --git a/htdocs/theme/eldy/img/object_commercial.png b/htdocs/theme/eldy/img/object_commercial.png index 5f11e40a81f..36cdcc8d4a2 100644 Binary files a/htdocs/theme/eldy/img/object_commercial.png and b/htdocs/theme/eldy/img/object_commercial.png differ diff --git a/htdocs/theme/eldy/img/object_contact_all.png b/htdocs/theme/eldy/img/object_contact_all.png index 966f6e05cfa..f571504b246 100644 Binary files a/htdocs/theme/eldy/img/object_contact_all.png and b/htdocs/theme/eldy/img/object_contact_all.png differ diff --git a/htdocs/theme/eldy/img/object_cron.png b/htdocs/theme/eldy/img/object_cron.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/eldy/img/object_cron.png and b/htdocs/theme/eldy/img/object_cron.png differ diff --git a/htdocs/theme/eldy/img/object_email.png b/htdocs/theme/eldy/img/object_email.png index 9246f5cef24..d5cd141733d 100644 Binary files a/htdocs/theme/eldy/img/object_email.png and b/htdocs/theme/eldy/img/object_email.png differ diff --git a/htdocs/theme/eldy/img/object_generic.png b/htdocs/theme/eldy/img/object_generic.png index 4d5f811a891..ccfd2d2f5b2 100644 Binary files a/htdocs/theme/eldy/img/object_generic.png and b/htdocs/theme/eldy/img/object_generic.png differ diff --git a/htdocs/theme/eldy/img/object_globe.png b/htdocs/theme/eldy/img/object_globe.png index f726f8a705e..aae8bf6eba0 100644 Binary files a/htdocs/theme/eldy/img/object_globe.png and b/htdocs/theme/eldy/img/object_globe.png differ diff --git a/htdocs/theme/eldy/img/object_group.png b/htdocs/theme/eldy/img/object_group.png index f69db27d482..552eb39fa31 100644 Binary files a/htdocs/theme/eldy/img/object_group.png and b/htdocs/theme/eldy/img/object_group.png differ diff --git a/htdocs/theme/eldy/img/object_holiday.png b/htdocs/theme/eldy/img/object_holiday.png index 69ccdb279a5..fdc1dd8e22b 100644 Binary files a/htdocs/theme/eldy/img/object_holiday.png and b/htdocs/theme/eldy/img/object_holiday.png differ diff --git a/htdocs/theme/eldy/img/object_label.png b/htdocs/theme/eldy/img/object_label.png index 75a363ec8d5..b112af5cf0a 100644 Binary files a/htdocs/theme/eldy/img/object_label.png and b/htdocs/theme/eldy/img/object_label.png differ diff --git a/htdocs/theme/eldy/img/object_margin.png b/htdocs/theme/eldy/img/object_margin.png index 13e4b92c9ce..cd0eb4109f7 100644 Binary files a/htdocs/theme/eldy/img/object_margin.png and b/htdocs/theme/eldy/img/object_margin.png differ diff --git a/htdocs/theme/eldy/img/object_opensurvey.png b/htdocs/theme/eldy/img/object_opensurvey.png old mode 100755 new mode 100644 index 042d8217257..b5de3223bd4 Binary files a/htdocs/theme/eldy/img/object_opensurvey.png and b/htdocs/theme/eldy/img/object_opensurvey.png differ diff --git a/htdocs/theme/eldy/img/object_payment.png b/htdocs/theme/eldy/img/object_payment.png index 95f4c29ed2f..5691147d8ff 100644 Binary files a/htdocs/theme/eldy/img/object_payment.png and b/htdocs/theme/eldy/img/object_payment.png differ diff --git a/htdocs/theme/eldy/img/object_phoning.png b/htdocs/theme/eldy/img/object_phoning.png index 5f11e40a81f..36cdcc8d4a2 100644 Binary files a/htdocs/theme/eldy/img/object_phoning.png and b/htdocs/theme/eldy/img/object_phoning.png differ diff --git a/htdocs/theme/eldy/img/object_project.png b/htdocs/theme/eldy/img/object_project.png index 070fe326983..fd84ab427db 100644 Binary files a/htdocs/theme/eldy/img/object_project.png and b/htdocs/theme/eldy/img/object_project.png differ diff --git a/htdocs/theme/eldy/img/object_projectpub.png b/htdocs/theme/eldy/img/object_projectpub.png index 5ea2e846ddf..1444573cf05 100644 Binary files a/htdocs/theme/eldy/img/object_projectpub.png and b/htdocs/theme/eldy/img/object_projectpub.png differ diff --git a/htdocs/theme/eldy/img/object_projecttask.png b/htdocs/theme/eldy/img/object_projecttask.png index 3ec85fed9d3..4a01b50435a 100644 Binary files a/htdocs/theme/eldy/img/object_projecttask.png and b/htdocs/theme/eldy/img/object_projecttask.png differ diff --git a/htdocs/theme/eldy/img/object_propal.png b/htdocs/theme/eldy/img/object_propal.png index 4a52d65b9e6..2dc60e66b3e 100644 Binary files a/htdocs/theme/eldy/img/object_propal.png and b/htdocs/theme/eldy/img/object_propal.png differ diff --git a/htdocs/theme/eldy/img/object_reduc.png b/htdocs/theme/eldy/img/object_reduc.png index 4d5f811a891..ccfd2d2f5b2 100644 Binary files a/htdocs/theme/eldy/img/object_reduc.png and b/htdocs/theme/eldy/img/object_reduc.png differ diff --git a/htdocs/theme/eldy/img/object_rss.png b/htdocs/theme/eldy/img/object_rss.png index 8f4224b5a30..37372031157 100644 Binary files a/htdocs/theme/eldy/img/object_rss.png and b/htdocs/theme/eldy/img/object_rss.png differ diff --git a/htdocs/theme/eldy/img/object_service.png b/htdocs/theme/eldy/img/object_service.png index 2161bfd59cc..65e9041589f 100644 Binary files a/htdocs/theme/eldy/img/object_service.png and b/htdocs/theme/eldy/img/object_service.png differ diff --git a/htdocs/theme/eldy/img/object_skype.png b/htdocs/theme/eldy/img/object_skype.png index 97121565bb0..b209cd8d16e 100644 Binary files a/htdocs/theme/eldy/img/object_skype.png and b/htdocs/theme/eldy/img/object_skype.png differ diff --git a/htdocs/theme/eldy/img/object_stock.png b/htdocs/theme/eldy/img/object_stock.png index 279a34f869a..2f439db7b50 100644 Binary files a/htdocs/theme/eldy/img/object_stock.png and b/htdocs/theme/eldy/img/object_stock.png differ diff --git a/htdocs/theme/eldy/img/object_task.png b/htdocs/theme/eldy/img/object_task.png index 24581634018..14dc14a9602 100644 Binary files a/htdocs/theme/eldy/img/object_task.png and b/htdocs/theme/eldy/img/object_task.png differ diff --git a/htdocs/theme/eldy/img/object_technic.png b/htdocs/theme/eldy/img/object_technic.png index b929050598d..6186d18da70 100644 Binary files a/htdocs/theme/eldy/img/object_technic.png and b/htdocs/theme/eldy/img/object_technic.png differ diff --git a/htdocs/theme/eldy/img/off.png b/htdocs/theme/eldy/img/off.png index 6b4604d38ed..f4217646b26 100644 Binary files a/htdocs/theme/eldy/img/off.png and b/htdocs/theme/eldy/img/off.png differ diff --git a/htdocs/theme/eldy/img/on.png b/htdocs/theme/eldy/img/on.png index 82572b9e1d1..728bb393536 100644 Binary files a/htdocs/theme/eldy/img/on.png and b/htdocs/theme/eldy/img/on.png differ diff --git a/htdocs/theme/eldy/img/pdf2.png b/htdocs/theme/eldy/img/pdf2.png index 4702d19fd50..06634550daa 100644 Binary files a/htdocs/theme/eldy/img/pdf2.png and b/htdocs/theme/eldy/img/pdf2.png differ diff --git a/htdocs/theme/eldy/img/pdf3.png b/htdocs/theme/eldy/img/pdf3.png index cd76e0f9253..f053591bf2d 100644 Binary files a/htdocs/theme/eldy/img/pdf3.png and b/htdocs/theme/eldy/img/pdf3.png differ diff --git a/htdocs/theme/eldy/img/play.png b/htdocs/theme/eldy/img/play.png index 6de3e256ba6..4922ea1ec12 100644 Binary files a/htdocs/theme/eldy/img/play.png and b/htdocs/theme/eldy/img/play.png differ diff --git a/htdocs/theme/eldy/img/puce.png b/htdocs/theme/eldy/img/puce.png index dfa83acd50d..8c116b0dc42 100644 Binary files a/htdocs/theme/eldy/img/puce.png and b/htdocs/theme/eldy/img/puce.png differ diff --git a/htdocs/theme/eldy/img/recent.png b/htdocs/theme/eldy/img/recent.png index 61daae778f5..a49fc171c06 100644 Binary files a/htdocs/theme/eldy/img/recent.png and b/htdocs/theme/eldy/img/recent.png differ diff --git a/htdocs/theme/eldy/img/redstar.png b/htdocs/theme/eldy/img/redstar.png index 001cde58667..486fd6770a2 100644 Binary files a/htdocs/theme/eldy/img/redstar.png and b/htdocs/theme/eldy/img/redstar.png differ diff --git a/htdocs/theme/eldy/img/refresh.png b/htdocs/theme/eldy/img/refresh.png index 046ce37b9c5..9994475cdfe 100644 Binary files a/htdocs/theme/eldy/img/refresh.png and b/htdocs/theme/eldy/img/refresh.png differ diff --git a/htdocs/theme/eldy/img/reload.png b/htdocs/theme/eldy/img/reload.png index 62056d2a89a..a4029f119de 100644 Binary files a/htdocs/theme/eldy/img/reload.png and b/htdocs/theme/eldy/img/reload.png differ diff --git a/htdocs/theme/eldy/img/rightarrow.png b/htdocs/theme/eldy/img/rightarrow.png index 2ea37440ecd..2c479d9453b 100644 Binary files a/htdocs/theme/eldy/img/rightarrow.png and b/htdocs/theme/eldy/img/rightarrow.png differ diff --git a/htdocs/theme/eldy/img/searchclear.png b/htdocs/theme/eldy/img/searchclear.png index 024e0c62cdd..203a85e10c4 100644 Binary files a/htdocs/theme/eldy/img/searchclear.png and b/htdocs/theme/eldy/img/searchclear.png differ diff --git a/htdocs/theme/eldy/img/setup.png b/htdocs/theme/eldy/img/setup.png index b9bef6d2a18..f997e53799b 100644 Binary files a/htdocs/theme/eldy/img/setup.png and b/htdocs/theme/eldy/img/setup.png differ diff --git a/htdocs/theme/eldy/img/sort_asc.png b/htdocs/theme/eldy/img/sort_asc.png index a88d7975fe9..e327d952fa4 100644 Binary files a/htdocs/theme/eldy/img/sort_asc.png and b/htdocs/theme/eldy/img/sort_asc.png differ diff --git a/htdocs/theme/eldy/img/sort_asc_disabled.png b/htdocs/theme/eldy/img/sort_asc_disabled.png index 4e144cf0b1f..e327d952fa4 100644 Binary files a/htdocs/theme/eldy/img/sort_asc_disabled.png and b/htdocs/theme/eldy/img/sort_asc_disabled.png differ diff --git a/htdocs/theme/eldy/img/sort_desc.png b/htdocs/theme/eldy/img/sort_desc.png index def071ed5af..db99fd9ad47 100644 Binary files a/htdocs/theme/eldy/img/sort_desc.png and b/htdocs/theme/eldy/img/sort_desc.png differ diff --git a/htdocs/theme/eldy/img/sort_desc_disabled.png b/htdocs/theme/eldy/img/sort_desc_disabled.png index 7824973cc60..89051c2f34f 100644 Binary files a/htdocs/theme/eldy/img/sort_desc_disabled.png and b/htdocs/theme/eldy/img/sort_desc_disabled.png differ diff --git a/htdocs/theme/eldy/img/split.png b/htdocs/theme/eldy/img/split.png index 008557d7341..bb66213f413 100644 Binary files a/htdocs/theme/eldy/img/split.png and b/htdocs/theme/eldy/img/split.png differ diff --git a/htdocs/theme/eldy/img/statut0.png b/htdocs/theme/eldy/img/statut0.png index 0f7b0bd4f87..d11252783a4 100644 Binary files a/htdocs/theme/eldy/img/statut0.png and b/htdocs/theme/eldy/img/statut0.png differ diff --git a/htdocs/theme/eldy/img/statut1.png b/htdocs/theme/eldy/img/statut1.png index 3e4650f4f02..558439d282e 100644 Binary files a/htdocs/theme/eldy/img/statut1.png and b/htdocs/theme/eldy/img/statut1.png differ diff --git a/htdocs/theme/eldy/img/statut3.png b/htdocs/theme/eldy/img/statut3.png index f49966eaaa1..e7515796683 100644 Binary files a/htdocs/theme/eldy/img/statut3.png and b/htdocs/theme/eldy/img/statut3.png differ diff --git a/htdocs/theme/eldy/img/statut4.png b/htdocs/theme/eldy/img/statut4.png index aed93a350ba..6ec1ba55961 100644 Binary files a/htdocs/theme/eldy/img/statut4.png and b/htdocs/theme/eldy/img/statut4.png differ diff --git a/htdocs/theme/eldy/img/statut5.png b/htdocs/theme/eldy/img/statut5.png index a2e22fe6f59..53264a0515d 100644 Binary files a/htdocs/theme/eldy/img/statut5.png and b/htdocs/theme/eldy/img/statut5.png differ diff --git a/htdocs/theme/eldy/img/statut7.png b/htdocs/theme/eldy/img/statut7.png index 50295a03ed5..8871a45519f 100644 Binary files a/htdocs/theme/eldy/img/statut7.png and b/htdocs/theme/eldy/img/statut7.png differ diff --git a/htdocs/theme/eldy/img/statut8.png b/htdocs/theme/eldy/img/statut8.png index 4d8f59be1c2..c24d4a9dac2 100644 Binary files a/htdocs/theme/eldy/img/statut8.png and b/htdocs/theme/eldy/img/statut8.png differ diff --git a/htdocs/theme/eldy/img/statut9.png b/htdocs/theme/eldy/img/statut9.png index 5401cf9b03d..94b6dabf265 100644 Binary files a/htdocs/theme/eldy/img/statut9.png and b/htdocs/theme/eldy/img/statut9.png differ diff --git a/htdocs/theme/eldy/img/stcomm-1.png b/htdocs/theme/eldy/img/stcomm-1.png index 52b3625ac05..df442fc1eda 100644 Binary files a/htdocs/theme/eldy/img/stcomm-1.png and b/htdocs/theme/eldy/img/stcomm-1.png differ diff --git a/htdocs/theme/eldy/img/stcomm-1_grayed.png b/htdocs/theme/eldy/img/stcomm-1_grayed.png index 20a7219535e..5942e6c72af 100644 Binary files a/htdocs/theme/eldy/img/stcomm-1_grayed.png and b/htdocs/theme/eldy/img/stcomm-1_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm0.png b/htdocs/theme/eldy/img/stcomm0.png index 6053eeda485..cbe60a02d28 100644 Binary files a/htdocs/theme/eldy/img/stcomm0.png and b/htdocs/theme/eldy/img/stcomm0.png differ diff --git a/htdocs/theme/eldy/img/stcomm0_grayed.png b/htdocs/theme/eldy/img/stcomm0_grayed.png index a92e1558506..9016db48b02 100644 Binary files a/htdocs/theme/eldy/img/stcomm0_grayed.png and b/htdocs/theme/eldy/img/stcomm0_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm1.png b/htdocs/theme/eldy/img/stcomm1.png index eb76c0fb179..6bdea492985 100644 Binary files a/htdocs/theme/eldy/img/stcomm1.png and b/htdocs/theme/eldy/img/stcomm1.png differ diff --git a/htdocs/theme/eldy/img/stcomm1_grayed.png b/htdocs/theme/eldy/img/stcomm1_grayed.png index 98ed423aa9e..367a55921e4 100644 Binary files a/htdocs/theme/eldy/img/stcomm1_grayed.png and b/htdocs/theme/eldy/img/stcomm1_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm2.png b/htdocs/theme/eldy/img/stcomm2.png index 1e76ce4946b..9e000b70dc9 100644 Binary files a/htdocs/theme/eldy/img/stcomm2.png and b/htdocs/theme/eldy/img/stcomm2.png differ diff --git a/htdocs/theme/eldy/img/stcomm2_grayed.png b/htdocs/theme/eldy/img/stcomm2_grayed.png index 0f2a4332cfc..f667e3573d0 100644 Binary files a/htdocs/theme/eldy/img/stcomm2_grayed.png and b/htdocs/theme/eldy/img/stcomm2_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm3.png b/htdocs/theme/eldy/img/stcomm3.png index 465234fcd3c..5a6c0aeface 100644 Binary files a/htdocs/theme/eldy/img/stcomm3.png and b/htdocs/theme/eldy/img/stcomm3.png differ diff --git a/htdocs/theme/eldy/img/stcomm3_grayed.png b/htdocs/theme/eldy/img/stcomm3_grayed.png index fc80eb2aebd..81a14c1e482 100644 Binary files a/htdocs/theme/eldy/img/stcomm3_grayed.png and b/htdocs/theme/eldy/img/stcomm3_grayed.png differ diff --git a/htdocs/theme/eldy/img/stcomm4.png b/htdocs/theme/eldy/img/stcomm4.png index c839a8acec5..3e26b4d06ed 100644 Binary files a/htdocs/theme/eldy/img/stcomm4.png and b/htdocs/theme/eldy/img/stcomm4.png differ diff --git a/htdocs/theme/eldy/img/stcomm4_grayed.png b/htdocs/theme/eldy/img/stcomm4_grayed.png index 4935499d917..4271aafb6ce 100644 Binary files a/htdocs/theme/eldy/img/stcomm4_grayed.png and b/htdocs/theme/eldy/img/stcomm4_grayed.png differ diff --git a/htdocs/theme/eldy/img/tab_background.png b/htdocs/theme/eldy/img/tab_background.png index 0864dcc5852..6edd65003e0 100644 Binary files a/htdocs/theme/eldy/img/tab_background.png and b/htdocs/theme/eldy/img/tab_background.png differ diff --git a/htdocs/theme/eldy/img/tick.png b/htdocs/theme/eldy/img/tick.png index deb69ee75ec..9b035d99511 100644 Binary files a/htdocs/theme/eldy/img/tick.png and b/htdocs/theme/eldy/img/tick.png differ diff --git a/htdocs/theme/eldy/img/title.png b/htdocs/theme/eldy/img/title.png index bcd70489c80..bb48d617379 100644 Binary files a/htdocs/theme/eldy/img/title.png and b/htdocs/theme/eldy/img/title.png differ diff --git a/htdocs/theme/eldy/img/tmenu.jpg b/htdocs/theme/eldy/img/tmenu.jpg index 3e8c28692da..e7c37c34041 100644 Binary files a/htdocs/theme/eldy/img/tmenu.jpg and b/htdocs/theme/eldy/img/tmenu.jpg differ diff --git a/htdocs/theme/eldy/img/tmenu2.jpg b/htdocs/theme/eldy/img/tmenu2.jpg index b9c24a7c18b..b8f434c6d1f 100644 Binary files a/htdocs/theme/eldy/img/tmenu2.jpg and b/htdocs/theme/eldy/img/tmenu2.jpg differ diff --git a/htdocs/theme/eldy/img/tmenu3.jpg b/htdocs/theme/eldy/img/tmenu3.jpg index dc2434541cf..d42f804b026 100644 Binary files a/htdocs/theme/eldy/img/tmenu3.jpg and b/htdocs/theme/eldy/img/tmenu3.jpg differ diff --git a/htdocs/theme/eldy/img/tmenu_inverse.jpg b/htdocs/theme/eldy/img/tmenu_inverse.jpg index c8fe6d0aff2..e1efd44376e 100644 Binary files a/htdocs/theme/eldy/img/tmenu_inverse.jpg and b/htdocs/theme/eldy/img/tmenu_inverse.jpg differ diff --git a/htdocs/theme/eldy/img/unlock.png b/htdocs/theme/eldy/img/unlock.png index f3eebc59274..afefaa94d47 100644 Binary files a/htdocs/theme/eldy/img/unlock.png and b/htdocs/theme/eldy/img/unlock.png differ diff --git a/htdocs/theme/eldy/img/vcard.png b/htdocs/theme/eldy/img/vcard.png index e03026f87fb..315abdf179d 100644 Binary files a/htdocs/theme/eldy/img/vcard.png and b/htdocs/theme/eldy/img/vcard.png differ diff --git a/htdocs/theme/eldy/img/view.png b/htdocs/theme/eldy/img/view.png index 828c79a8323..76c1e9f1e6a 100644 Binary files a/htdocs/theme/eldy/img/view.png and b/htdocs/theme/eldy/img/view.png differ diff --git a/htdocs/theme/eldy/img/warning.png b/htdocs/theme/eldy/img/warning.png index ae8e35e781d..f1b93b8cc82 100644 Binary files a/htdocs/theme/eldy/img/warning.png and b/htdocs/theme/eldy/img/warning.png differ diff --git a/htdocs/theme/eldy/thumb.png b/htdocs/theme/eldy/thumb.png index e17e0912147..6b4c467bead 100644 Binary files a/htdocs/theme/eldy/thumb.png and b/htdocs/theme/eldy/thumb.png differ diff --git a/htdocs/theme/login_background.png b/htdocs/theme/login_background.png index b264649fcbc..facc2c6f442 100644 Binary files a/htdocs/theme/login_background.png and b/htdocs/theme/login_background.png differ diff --git a/htdocs/theme/login_logo.png b/htdocs/theme/login_logo.png index 2337863c340..53cf79da7b4 100644 Binary files a/htdocs/theme/login_logo.png and b/htdocs/theme/login_logo.png differ diff --git a/htdocs/user/logout.php b/htdocs/user/logout.php index 81434828592..37ff691fdcc 100644 --- a/htdocs/user/logout.php +++ b/htdocs/user/logout.php @@ -38,6 +38,7 @@ if (!empty($_SESSION["dol_authmode"]) && ($_SESSION["dol_authmode"] == 'forceuse die("Disconnection does not work when connection was made in mode ".$_SESSION["dol_authmode"]); } +global $conf, $langs, $user; // Appel des triggers include_once DOL_DOCUMENT_ROOT . '/core/class/interfaces.class.php'; diff --git a/htdocs/webservices/server_contact.php b/htdocs/webservices/server_contact.php index 004d00b58f7..672f90a7bd1 100644 --- a/htdocs/webservices/server_contact.php +++ b/htdocs/webservices/server_contact.php @@ -491,7 +491,7 @@ function getContactsForThirdParty($authentication,$idthirdparty) { $linesinvoice=array(); - $sql = "SELECT c.rowid, c.fk_soc, c.civilite as civility_id, c.lastname, c.firstname, c.statut,"; + $sql = "SELECT c.rowid, c.fk_soc, c.civility as civility_id, c.lastname, c.firstname, c.statut,"; $sql.= " c.address, c.zip, c.town,"; $sql.= " c.fk_pays as country_id,"; $sql.= " c.fk_departement,";