Skip to content
Snippets Groups Projects
Commit 5404bc0c authored by Graham Cole's avatar Graham Cole
Browse files

a few template url fixes that were sitting in my tree

parent 2c8bedb5
No related branches found
No related tags found
No related merge requests found
<form class="dialog" action="{$path}" method="post">
<form class="dialog" action="{$baseurl}{$path}" method="post">
<div class="box">
<div class="boxhead"><h2>Warning</h2></div>
<div class="boxcontent">
......
<h2>Post a news item</h2>
<form class="admin" action="{$path}" method="POST">
<form class="admin" action="{$baseurl}{$path}" method="POST">
<div class="row">
<label for="edittitle">Title</label>
<span class="textinput"><input type="text" name="edittitle" id="edittitle" value="{$news[0].title}" style="width: 100%;" /></span>
......
<form class="dialog" action="{$path}" method="post">
<form class="dialog" action="{$baseurl}{$path}" method="post">
<div class="box">
<div class="boxhead"><h2>Warning</h2></div>
<div class="boxcontent">
......
......@@ -2,7 +2,7 @@
{if count($pasteList) > 0 }
<ul id="lstSidebar">
{foreach name=pasteList from=$pasteList item=pasteItem}
<li><a href="{$urifragment}{$pasteItem.id}"> {$pasteItem.name} - {$pasteItem.time_diff} ago </a></li>
<li><a href="{$baseurl}{$urifragment}{$pasteItem.id}"> {$pasteItem.name} - {$pasteItem.time_diff} ago </a></li>
{/foreach}
</ul>
{else}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment