mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-31 20:20:36 -04:00
1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure)
20 lines
556 B
PHP
20 lines
556 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<script type="text/javascript">
|
|
$(document).ready( function() {
|
|
$('#gRearrangeTree').RearrangeTree({
|
|
script: "<?= url::base(true) . "rearrange/show" ?>"
|
|
}, function(file) {});
|
|
});
|
|
</script>
|
|
<div id="gRearrange">
|
|
<span id="gAddAlbum" rel="gAddAlbum">New Album</span>
|
|
<div id="gAddAlbumPopup">
|
|
<a id="gAddAlbumPopupClose">x</a>
|
|
<div id="gAddAlbumArea"></div>
|
|
</div>
|
|
|
|
<span id="gDeleteItem">Delete</span>
|
|
<hr/>
|
|
<div id="gRearrangeTree"></div>
|
|
</div>
|