summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Bellinson <thread@gentoo.org>2001-06-25 21:14:50 +0000
committerAdam Bellinson <thread@gentoo.org>2001-06-25 21:14:50 +0000
commitbc0ed579781c5301222fc4fb4635d3a1c27ca60a (patch)
tree63b4f2cfa7ce56eb8308c192ba9342995b8996dd /app-doc
parent*** empty log message *** (diff)
downloadgentoo-2-bc0ed579781c5301222fc4fb4635d3a1c27ca60a.tar.gz
gentoo-2-bc0ed579781c5301222fc4fb4635d3a1c27ca60a.tar.bz2
gentoo-2-bc0ed579781c5301222fc4fb4635d3a1c27ca60a.zip
*** empty log message ***
Diffstat (limited to 'app-doc')
-rw-r--r--app-doc/gentoo-web/files/wiki/devtodo.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/app-doc/gentoo-web/files/wiki/devtodo.php b/app-doc/gentoo-web/files/wiki/devtodo.php
index ff6860c17d02..fbef7cbeb094 100644
--- a/app-doc/gentoo-web/files/wiki/devtodo.php
+++ b/app-doc/gentoo-web/files/wiki/devtodo.php
@@ -57,19 +57,13 @@
<p style="font-size:medium;font-weight:bold;"><?=$username;?>'s completed todos</p>
<table width="95%" border=0 cellpadding=2 cellspacing=2>
-<?php if ( $uid == $devid ) { ?>
-<tr>
- <td colspan=5 align="right">You're logged in. Clicking on a todo will take you to an edit page.<br>
- or... <a href="single.php?action=new_todo">Create a new todo</a>.</td>
-</tr>
-<?php } ?>
<tr>
<td bgcolor="#dddaec"><b>Title</b></td>
<td bgcolor="#dddaec"><b>Followups</b></td>
<td bgcolor="#dddaec"><b>Existed</b></td>
</tr>
<?php
- $result = mysql_query( "select * from todos where owner=$devid and priority=0 order by date" );
+ $result = mysql_query( "select * from todos where owner=$devid and priority=0 order by datecompleted" );
while ( $todo = mysql_fetch_array($result) ) {
$fupcount = mysql_query( 'select fid from followups where tid='.$todo['tid'] );