1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php printAdminHeader('upload','albums'); echo "\n</head>"; echo "\n<body>"; printLogoAndLinks(); ?> <div id="main"> <?php printTabs(); ?> <div id="content"> <p class="notebox"> <?php echo gettext('There are no upload handlers enabled that can service your request.')?> </p> </div><!-- content --> </div><!-- main --> <?php printAdminFooter(); ?> </body> </html>
|