Minor edits. Changed the date format string in layout to use %d rather than %e.

git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@19 a4c988fc-2ded-0310-b66e-134b36920a42
This commit is contained in:
bsag 2005-02-12 11:31:19 +00:00
parent f2861a5bc7
commit ce14b8f77d
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@
<% if @count %> <% if @count %>
<span class="badge"><%= @count %></span> <span class="badge"><%= @count %></span>
<% end %> <% end %>
<%= today = Time.now; datestamp = today.strftime("%A, %e %B %Y") %></h1> <%= today = Time.now; datestamp = today.strftime("%A, %d %B %Y") %></h1>
</div> </div>
<div id="navcontainer"> <div id="navcontainer">
<ul id="navlist"> <ul id="navlist">

View file

@ -7,7 +7,7 @@ Options +FollowSymLinks +ExecCGI
RewriteEngine On RewriteEngine On
# Change extension from .cgi to .fcgi to switch to FCGI and to .rb to switch to mod_ruby # Change extension from .cgi to .fcgi to switch to FCGI and to .rb to switch to mod_ruby
RewriteBase /dispatch.fcgi RewriteBase /dispatch.cgi
# Enable this rewrite rule to point to the controller/action that should serve root. # Enable this rewrite rule to point to the controller/action that should serve root.
RewriteRule ^$ /todo/list [R] RewriteRule ^$ /todo/list [R]