diff options
author | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2009-12-22 12:21:44 -0500 |
---|---|---|
committer | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2009-12-22 12:21:44 -0500 |
commit | 66a8f61e38c122b596c9fcf89d2cacea57a6e9f2 (patch) | |
tree | ecfd2f1a3966cb5281cab6c89773987661a3a5e9 /admin/newsreel/functions.php | |
parent | b06638761f326c7f53f157137b119008c2ff7b35 (diff) | |
download | bayonetcms-66a8f61e38c122b596c9fcf89d2cacea57a6e9f2.tar.gz |
(OC) started edit news
git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2@392 c5b2fb0a-d05d-0410-98c8-828840a80ff6
Diffstat (limited to 'admin/newsreel/functions.php')
-rw-r--r-- | admin/newsreel/functions.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/admin/newsreel/functions.php b/admin/newsreel/functions.php index 583e719..8423b9b 100644 --- a/admin/newsreel/functions.php +++ b/admin/newsreel/functions.php @@ -16,6 +16,7 @@ ul { border: #CCCCCC solid 1px;
color:#fff;
text-align:center;
+ cursor:move;
}
</style>
@@ -105,6 +106,7 @@ $(document).ready(function(){ function ListInactive(){
global $db;
+ echo "<h3>Disabled Slides</h3>";
$result = $db->query("SELECT `slide_id`, `title`, `src` FROM `bayonet_newsreel` WHERE `visible` = 0 ORDER BY `slide_id` DESC");
while(($row = $db->fetch($result))!= false){
|