This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
i-librarian/stable.php /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
23 lines (23 sloc)
595 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| include_once 'data.php'; | |
| include_once 'functions.php'; | |
| include_once 'index.inc.php'; | |
| ?> | |
| <body style="margin:0px;padding:0"> | |
| <div class="ui-state-default ui-corner-top" style="float:left;margin:2px 4px 1px 4px;padding:1px 4px"> | |
| <a href="<?php print IL_URL; ?>?id=<?php print $_GET['id']; ?>" style="display:block"> | |
| <i class="fa fa-home"></i> Open in I, Librarian | |
| </a> | |
| </div> | |
| <div style="clear:both"></div> | |
| <?php | |
| if (isset($_GET['id'])) { | |
| $_GET['file'] = $_GET['id']; | |
| include 'file_top.php'; | |
| } | |
| ?> | |
| <script type="text/javascript"> | |
| filetop.init(); | |
| </script> | |
| </body> | |
| </html> |