";
}
else
{
echo "
You first need to log in to use this page.";
echo "
[login]";
return false;
}
// Display articles "editing in progress"
$sqlstr = 'SELECT titre, id_article, lang, date FROM spip_articles WHERE statut = "prepa" ORDER BY lang;';
$result = mysql_query($sqlstr);
if ($result && mysql_num_rows($result) > 0)
{
echo "List of articles still being edited:\n";
echo '';
while($row = mysql_fetch_array($result))
{
echo '- [' . $row["lang"] . '] ' . $row["titre"] . ' ' . affdate($row["date"]) . '
' . "\n" ;
}
mysql_free_result($result);
echo '
';
} else {
echo "There are no articles on the site with status editing in progress.\n";
}
?>