Merge remote-tracking branch 'upstream/framasoft' into optional_REMOTE_USER
This commit is contained in:
commit
85c843357e
11
bandeaux.php
11
bandeaux.php
@ -81,7 +81,16 @@ function logo ()
|
||||
#le bandeau principal
|
||||
function bandeau_tete()
|
||||
{
|
||||
echo '<div class="bandeau"><a href="'.get_server_name().'" title="Accueil Framadate"><img src="'.get_server_name().'images/logo-framadate.png" title="Accueil '.NOMAPPLICATION.'" alt="'.NOMAPPLICATION.'"></a></div>'."\n";
|
||||
if ( IMAGE_TITRE ) {
|
||||
|
||||
echo '<div class="bandeau"><a href="'.get_server_name().'" title="Accueil '.NOMAPPLICATION.'"><img src="'.get_server_name().IMAGE_TITRE.'" title="Accueil '.NOMAPPLICATION.'" alt="'.NOMAPPLICATION.'"></a></div>'."\n";
|
||||
|
||||
} else {
|
||||
|
||||
echo '<div class="bandeau"><a href="'.get_server_name().'" title="Accueil '.NOMAPPLICATION.'">'.NOMAPPLICATION.'</a></div>'."\n";
|
||||
|
||||
} ;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
|
||||
session_start();
|
||||
|
||||
require_once('fpdf/phpToPDF.php');
|
||||
require_once('php2pdf/phpToPDF.php');
|
||||
include_once('fonctions.php');
|
||||
|
||||
$dsondage = get_sondage_from_id($_POST['numsondage']);
|
||||
|
@ -75,6 +75,10 @@ define('LOGOBANDEAU', '<chemin relatif suivi du nom du fichier du logo pour le b
|
||||
// Nom et emplacement du logo de la lettre générée en PDF
|
||||
define('LOGOLETTRE', '<chemin relatif suivi du nom du fichier du logo pour la lettre>');
|
||||
|
||||
// Nom et emplacement du fichier image contenant le titre
|
||||
//define('IMAGE_TITRE', '<chemin relatif suivi du nom du fichier image du titre>');
|
||||
define('IMAGE_TITRE', 'images/logo-framadate.png');
|
||||
|
||||
// Activation des URL propre (true pour activer, false sinon)
|
||||
define('URL_PROPRE', false);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user