Commit d503ca06806295164d1b8c899b264b6d0eef089a

Some small fixes.
index.php
(2 / 1)
  
221221 }
222222
223223 function getCSSURL() {
224 return getThemeDir() . "/style.css";
224 global $BASE_URL;
225 return "$BASE_URL/" . getThemeDir() . "/style.css";
225226 }
226227
227228 function getThemeDir() {
  
66 </head>
77 <body>
88 <div id="navigation">
9 <p><a href="<?php print getHomeURL() ?>">Home</a></p>
9 <p><a href="<?php print getHomeURL() ?>">Home</a>
10 | <a href="<?php print getGlobalHistoryURL() ?>">History</a>
11 <?php if (getUser() != "") { ?>| Logged in as <?php print getUser(); } ?>
12 </p>
1013 </div>
1114
1215 <div id="header">
2121 <p><textarea name="data" cols="80" rows="20" style="width: 100%"><?php print $wikiData; ?></textarea></p>
2222 <p><input type="submit" value="publish" /></p>
2323 </form>
24 </div>
25
26 <div id="footer">
27 <?php if (getUser() != "") { ?>
28 <p>Logged in as <?php print getUser(); ?></p>
29 <?php } ?>
3024 </div>
3125
3226 </body>