diff options
Diffstat (limited to 'lib/tpl/default/media.php')
-rw-r--r-- | lib/tpl/default/media.php | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lib/tpl/default/media.php b/lib/tpl/default/media.php index 507717463..d4417d5f6 100644 --- a/lib/tpl/default/media.php +++ b/lib/tpl/default/media.php @@ -1,6 +1,6 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<? +<?php /** * DokuWiki Default Template * @@ -13,45 +13,45 @@ * @author Andreas Gohr <andi@splitbrain.org> */ ?> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?=$conf['lang']?>" lang="<?=$conf['lang']?>" dir="ltr"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr"> <head> - <title><?=hsc($lang['mediaselect'])?> [<?=hsc($conf['title'])?>]</title> + <title><?php echo hsc($lang['mediaselect'])?> [<?php echo hsc($conf['title'])?>]</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <?tpl_metaheaders()?> + <?php tpl_metaheaders()?> - <link rel="shortcut icon" href="<?=DOKU_BASE?>lib/images/favicon.ico" /> - <link rel="stylesheet" media="screen" type="text/css" href="<?=DOKU_TPL?>layout.css" /> - <link rel="stylesheet" media="screen" type="text/css" href="<?=DOKU_TPL?>design.css" /> + <link rel="shortcut icon" href="<?php echo DOKU_BASE?>lib/images/favicon.ico" /> + <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>layout.css" /> + <link rel="stylesheet" media="screen" type="text/css" href="<?php echo DOKU_TPL?>design.css" /> <!--[if gte IE 5]> <style type="text/css"> /* that IE 5+ conditional comment makes this only visible in IE 5+ */ /* IE bugfix for transparent PNGs */ - //DISABLED img { behavior: url("<?=DOKU_BASE?>lib/scripts/pngbehavior.htc"); } + //DISABLED img { behavior: url("<?php echo DOKU_BASE?>lib/scripts/pngbehavior.htc"); } </style> <![endif]--> </head> <body> <div class="dokuwiki"> - <?html_msgarea()?> + <?php html_msgarea()?> - <h1><?=hsc($lang['mediaselect'])?> <code><?=hsc($NS)?></code></h1> + <h1><?php echo hsc($lang['mediaselect'])?> <code><?php echo hsc($NS)?></code></h1> <div class="mediaselect"> <div class="mediaselect-left"> - <b><a href="<?=DOKU_BASE?>/lib/exe/media.php?ns="><?=hsc($lang['namespaces'])?></a></b> + <b><a href="<?php echo DOKU_BASE?>/lib/exe/media.php?ns="><?php echo hsc($lang['namespaces'])?></a></b> - <?tpl_medianamespaces()?> + <?php tpl_medianamespaces()?> </div> <div class="mediaselect-right"> - <?tpl_mediafilelist()?> + <?php tpl_mediafilelist()?> <div class="uploadform"> - <?tpl_mediauploadform()?> + <?php tpl_mediauploadform()?> </div> </div> |