Changeset 42 for trunk/admin

Show
Ignore:
Timestamp:
01/08/06 17:42:28 (3 years ago)
Author:
michiel
Message:

backend was style-less because of change in html_header.

Location:
trunk/admin
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/admin/index.php

    r33 r42  
    957957//{{{ show the user some html code ;) 
    958958//----------------------------------- 
    959 html_header("Admin Interface"); 
     959html_header("Admin Interface", "."); 
    960960        ?> 
    961961        <div id="if_container"> 
     
    10011001                                default               : show_index();                         break; 
    10021002                        } 
    1003                         ?> 
    1004                         <div id="if_page_footer"> 
    1005                         &copy;2005 by Michiel van Baak. All Rights Reserved. 
    1006                         Website engine code is &copy; copyright by Michiel van Baak.<br /> 
    1007                         MvBlog is a free software released under the GNU/GPL. 
    1008                         Logo is designed and &copy;2005 by Sofie van Tendeloo. 
    1009                         </div> 
    1010                 </div> 
    1011         </div> 
    1012 </body> 
    1013 </html> 
     1003html_footer(); 
     1004?> 
  • trunk/admin/login.php

    r21 r42  
    3939                                </tr></table> 
    4040                        </div> 
    41                         <div id="if_page_footer"> 
    42                         &copy;2005 by Michiel van Baak. All Rights Reserved. 
    43                         Website engine code is &copy; copyright by Michiel van Baak.<br /> 
    44                         MvBlog is a free software released under the GNU/GPL. 
    45                         Logo is designed and &copy;2005 by Sofie van Tendeloo. 
    46                         </div> 
    47                 </div> 
    48         </div> 
    4941        </form> 
    5042        <script language="Javascript" type="text/javascript"> 
     
    7870} 
    7971 
    80 html_header("Admin Interface"); 
     72html_header("Admin Interface", "."); 
    8173switch ($_REQUEST["action"]) { 
    8274        case "login" : check_login($_POST["login"]); break; 
     
    8476        default      : show_login_screen();          break; 
    8577} 
     78html_footer(); 
    8679?> 
    87 </body> 
    88 </html>