summary refs log tree commit diff stats
path: root/theme/admin/managePending.tpl
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-08-09 09:14:58 -0400
committerStarla Insigna <hatkirby@fourisland.com>2009-08-09 09:14:58 -0400
commit893957c41481a0cd5eb624096337762ffa54ff28 (patch)
tree09d2487f8add5a6281e3482a471abf21faa4f819 /theme/admin/managePending.tpl
parentd27a3784c81f0c582e43655509e806978b7e65e4 (diff)
downloadfourisland-893957c41481a0cd5eb624096337762ffa54ff28.tar.gz
fourisland-893957c41481a0cd5eb624096337762ffa54ff28.tar.bz2
fourisland-893957c41481a0cd5eb624096337762ffa54ff28.zip
Created layout 7
The following changes were also made in this revision:

* All HTML was changed to XHTML and a !DOCTYPE was included to reflect this
* Rewrote quotes tracking system to be much less complicated and actually working
* Changed quotes rendering to look more like Chirpy than Rash
* Fixed comment textarea bug
* Rewrote a ton of CSS so it's not as bloated
* Added a JavaScript confirmation when deleting a comment
* AJAXified voting on the POTW
* AJAXified voting and flagging quotes
* AJAXified commenting
* AJAXified voting on posts
* Added DateFinder back after it was accidentally deleted in Layout 4.5

The following database changes must be performed as soon as possible:

* Fix title of NO <!DOCTYPE> post (the &lt; is missing the semicolon)
* Restore post Frasty Tha Snaman from a backup
* Reset "flag" field of all rows in "rash_quotes" to 0
* Remove the "vote" and "flag" columns of "rash_tracking"
* Rename the "quote_id" column of "rash_tracking" to "vote"

The following external code changes must also be performed as soon as possible:

* Add the following line to the end of the // Four Island block in The Fourm's functions.php:
  require('/svr/www/hatkirby/fourisland/main/includes/specialdates.php');
Diffstat (limited to 'theme/admin/managePending.tpl')
-rwxr-xr-xtheme/admin/managePending.tpl40
1 files changed, 20 insertions, 20 deletions
diff --git a/theme/admin/managePending.tpl b/theme/admin/managePending.tpl index 8cce14c..6c98bf8 100755 --- a/theme/admin/managePending.tpl +++ b/theme/admin/managePending.tpl
@@ -1,26 +1,26 @@
1<H2>Manage Pending</H2> 1<h2>Manage Pending</h2>
2 2
3<TABLE WIDTH="100%" CLASS="webmail"> 3<table width="100%" class="webmail">
4 <TR> 4 <tr>
5 <TH>Pending Post Title</TH> 5 <th>Pending Post Title</th>
6 <TH>Pending Post Author</TH> 6 <th>Pending Post Author</th>
7 <TH>Actions</TH> 7 <th>Actions</th>
8 </TR> 8 </tr>
9 9
10 <!--BEGIN PENDING--> 10 <!--BEGIN PENDING-->
11 <TR> 11 <tr>
12 <TD><!--PENDING.TITLE--></TD> 12 <td><!--PENDING.TITLE--></td>
13 <TD><!--PENDING.AUTHOR--></TD> 13 <td><!--PENDING.AUTHOR--></td>
14 14
15 <TD> 15 <td>
16 <A HREF="/admin/editPending.php?id=<!--PENDING.ID-->"><IMG SRC="/theme/images/icons/page_edit.png" ALT="Edit"></A> 16 <a href="/admin/editPending.php?id=<!--PENDING.ID-->"><img src="/theme/images/icons/page_edit.png" alt="Edit" /></a>
17 <A HREF="/admin/deletePending.php?id=<!--PENDING.ID-->"><IMG SRC="/theme/images/icons/page_delete.png" ALT="Delete"></A> 17 <a href="/admin/deletePending.php?id=<!--PENDING.ID-->"><img src="/theme/images/icons/page_delete.png" alt="Delete" /></a>
18 <A HREF="/admin/viewPending.php?id=<!--PENDING.ID-->"><IMG SRC="/theme/images/icons/page_go.png" ALT="View"></A> 18 <a href="/admin/viewPending.php?id=<!--PENDING.ID-->"><img src="/theme/images/icons/page_go.png" alt="View" /></a>
19 <A HREF="/admin/movePending.php?id=<!--PENDING.ID-->&amp;dir=up"><IMG SRC="/theme/images/icons/thumb_up.png" ALT="Move Up"></A> 19 <a href="/admin/movePending.php?id=<!--PENDING.ID-->&amp;dir=up"><img src="/theme/images/icons/thumb_up.png" alt="Move Up" /></a>
20 <A HREF="/admin/movePending.php?id=<!--PENDING.ID-->&amp;dir=down"><IMG SRC="/theme/images/icons/thumb_down.png" ALT="Move Down"></A> 20 <a href="/admin/movePending.php?id=<!--PENDING.ID-->&amp;dir=down"><img src="/theme/images/icons/thumb_down.png" alt="Move Down" /></a>
21 </TD> 21 </td>
22 </TR> 22 </tr>
23 <!--END PENDING--> 23 <!--END PENDING-->
24</TABLE> 24</table>
25 25
26<A HREF="/admin/">Back to Admin Panel</A> 26<a href="/admin/">Back to Admin Panel</a>