-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c3e132
commit b92eb64
Showing
26 changed files
with
336 additions
and
107 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
application/cache/* | ||
application/logs/* | ||
cache* | ||
temp* | ||
/application/cache/* | ||
/application/logs/* | ||
/cache/* | ||
/temp/* | ||
!/temp/README.txt |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php ob_start();?> | ||
|
||
<?php $head = ob_get_contents();ob_end_clean();$this->template->set('headers', $head);?> | ||
|
||
<?php ob_start();?> | ||
|
||
<h3 style="text-align: center; font-weight: bold; margin-bottom: 1em;">Ryerson University Libray Room Booking</h3> | ||
<span style="text-align: center"> | ||
<p>You do not have access to the Library Room Booking System</p> | ||
|
||
<p>If you believe you have reached this page in error, please contact <a href="mailto:<?php echo SITE_ADMIN; ?>"><?php echo SITE_ADMIN; ?></a></p> | ||
|
||
<p><a href="<?php echo base_url(); ?>logout">Logout</a></p> | ||
</span> | ||
<?php $content = ob_get_contents();ob_end_clean();$this->template->set('content', $content);?> |
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
Oops, something went wrong.