Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv10600
Modified Files:
serendipity_functions.inc.php
Log Message:
Removed unwanted 'double quote' char from category listing
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -d -r1.94 -r1.95
--- serendipity_functions.inc.php 7 Jul 2003 19:29:11 -0000 1.94
+++ serendipity_functions.inc.php 7 Jul 2003 21:32:52 -0000 1.95
@@ -1108,7 +1108,7 @@
$data = 'url=' . rawurlencode($url)
. '&title=' . rawurlencode($title)
. '&blog_name=' . rawurlencode($author)
- . '&excerpt=' .rawurlencode($text);
+ . '&excerpt=' . rawurlencode($text);
$response = serendipity_trackback_is_success(_serendipity_send($matches[2], $data));
return $response;
@@ -1544,7 +1544,7 @@
$n = "\n";
$cat_list = '<select name="serendipity[categoryid]">' . $n;
- $cat_list .= ' <option value="0">["' . NO_CATEGORY . ']</option>' . $n;
+ $cat_list .= ' <option value="0">[' . NO_CATEGORY . ']</option>' . $n;
if (is_array($cats)) {
foreach ($cats as $cat_data) {
$selected = $cat_data['categoryid'] == $entry['categoryid'] ? ' selected="selected"' : '';
|