Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24855
Modified Files:
NEWS serendipity_sidebar_items.php
Log Message:
Fixed link to superuser login for users with no URL rewriting
Index: serendipity_sidebar_items.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_sidebar_items.php,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -d -r1.51 -r1.52
--- serendipity_sidebar_items.php 21 Mar 2004 16:26:56 -0000 1.51
+++ serendipity_sidebar_items.php 1 Apr 2004 14:19:01 -0000 1.52
@@ -49,7 +49,7 @@
4
),
$this->get_config('beginningOfWeek')
-
+
);
}
}
@@ -263,7 +263,7 @@
global $serendipity;
$title = SYNDICATE_THIS_BLOG;
-
+
if ($this->get_config('prevent_cache') == 'true') {
$cache = '&nocache=true';
} else {
@@ -277,7 +277,7 @@
<br />
<?php
}
-
+
if ($this->get_config('show_1.0') != 'false') {
?>
<a href="<?php echo $serendipity['serendipityHTTPPath']; ?>rss.php?version=1.0<?php echo $cache; ?>"><img src="<?php echo serendipity_getTemplateFile('img/xml.gif'); ?>" <?php echo ($serendipity['XHTML11'] ? 'style="border: 0px"' : 'border="0"'); ?> alt="XML" /></a>
@@ -401,7 +401,7 @@
global $serendipity;
$title = SUPERUSER . ':';
- echo "<a href=\"{$serendipity['serendipityHTTPPath']}" . ($serendipity['rewrite'] == 'none' ? $serendipity['indexFile'] . '?/' : '') . PATH_ENTRIES."\" title=\"$title\">\$ su -</a>";
+ echo "<a href=\"{$serendipity['serendipityHTTPPath']}" . ($serendipity['rewrite'] == 'none' ? 'serendipity_entries.php?/' : '') . PATH_ENTRIES."\" title=\"$title\">\$ su -</a>";
}
}
@@ -452,7 +452,7 @@
$propbag->add('name', CONTENT);
$propbag->add('description', THE_NUGGET);
break;
-
+
case 'markup':
$propbag->add('type', 'boolean');
$propbag->add('name', DO_MARKUP);
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -d -r1.100 -r1.101
--- NEWS 1 Apr 2004 10:05:58 -0000 1.100
+++ NEWS 1 Apr 2004 14:19:01 -0000 1.101
@@ -3,6 +3,8 @@
Version 0.6 ()
------------------------------------------------------------------------
+ * Fixed $su link for users with no URL rewriting (garvinhicking)
+
* Fixed invalid XML for RDF trackback:ping (garvinhicking)
* Added plugin 'serendipity_event_statistics'. Hooks into the
|