(Untitled)

Nov 01, 2006 21:26


A couple of questions:

- I changed my locked entry icon with no problems, but is there any way I can change it on the archive page?
- My calendar looks a bit broken. Any way to make it so the date doesn't shift into the middle if there's no entry on a particular day?

Thanks!

Leave a comment

Comments 7

kunzite1 November 2 2006, 03:24:57 UTC
1.
function MonthDay::print_subjectlist() {
# Too many tables...
var string time = "";
var string poster = "";
var string icon = "";
var string subject = "";
var string comments = "";

foreach var Entry e ($.entries) {
$time = $e.time->time_format("short") + ": ";
$poster = "";
if (not($e.poster->equals($e.journal))) {
$poster = $e.poster + " ";
}

$icon = "";

if($e.security != "") {
var string alttext = "[$e.security post]";
var string url = "http://i57.photobucket.com/albums/g232/emslj/icon_protected.png";
$icon = """
... )

Reply

ems November 2 2006, 08:15:13 UTC
3 gave me this error and I couldn't figure out what I needed to replace p with:

S2 Compiler Output at Thu Nov 2 08:12:51 2006 ( ... )

Reply

kunzite1 November 4 2006, 01:01:21 UTC
the following:
if(($p.view != "entry") and ($p.view != "reply")) {needs to be:
if(($.view != "entry") and ($.view != "reply")) {

Reply

ems November 5 2006, 00:41:42 UTC
Worked! Thank you!

Now just the old comments problem to try and find a fix for... *hunts*

Reply


Leave a comment

Up