Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20345
Modified Files:
Tag: branch-smarty
NEWS serendipity_functions.inc.php
Log Message:
* "Recent Entries" Plugin can now have userdefined title and only
show entries of a specific category (+ subcategories).
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.419.2.62
retrieving revision 1.419.2.63
diff -u -d -r1.419.2.62 -r1.419.2.63
--- serendipity_functions.inc.php 4 Nov 2004 11:56:43 -0000 1.419.2.62
+++ serendipity_functions.inc.php 4 Nov 2004 12:54:47 -0000 1.419.2.63
@@ -2593,6 +2593,9 @@
htmlspecialchars($cat['category_name']));
}
break;
+ case 4:
+ $ret .= $cat['categoryid'] . '|||' . str_repeat(' ', $level * 2) . $cat['category_name'] . '@@@';
+ break;
}
$ret .= serendipity_generateCategoryList($cats, $select, $type, $cat['categoryid'], $level + 1, $xmlImg);
}
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.214.2.47
retrieving revision 1.214.2.48
diff -u -d -r1.214.2.47 -r1.214.2.48
--- NEWS 4 Nov 2004 11:56:42 -0000 1.214.2.47
+++ NEWS 4 Nov 2004 12:54:47 -0000 1.214.2.48
@@ -3,6 +3,10 @@
Version 0.8 ()
------------------------------------------------------------------------
+ * "Recent Entries" Plugin can now have userdefined title and only
+ show entries of a specific category (+ subcategories).
+ (garvinhicking)
+
* New "quicksave" button to save an entry as draft without being
redirected to entry overview, and immediately showing the preview.
Use Accesskeys: Alt-S saves entry, Alt-P previews, ALT-Q
|