PhotoPlog

PhotoPlog (http://www.photoplog.com/forum/index.php)
-   Bugs & Issues Tracker (http://www.photoplog.com/forum/forumdisplay.php?f=8)
-   -   [Closed via Lite v.1.0.9] XHTML-compliant (http://www.photoplog.com/forum/showthread.php?t=84)

Tefra 02-19-2006 01:25 PM

[Closed via Lite v.1.0.9] XHTML-compliant
 
Hey morgan couple of days ago i told you about some unclosed img tags in some files. You corrected some of them but here i am to give you more hints.

templates
photoplog_file_bit line 4 miss alt attribute
photoplog_view_file line 8 miss alt attribute
photoplog_cat_bit line 6 miss alt attribute
photoplog_comment_form line 61,54,20,26,33,40,47 miss alt attribute
photoplog_delete_form line 12 miss alt attribute
photoplog_edit_form 13 miss alt attribute
photoplog_rate_bit line 35,51,54 miss alt attribute

files
settings.php line 254,377 miss alt attribute
index.php line 266,280,284,599 miss alt attribute

(i don't think there are any other missing alt attribute anywhere in photoplog)

Also tag <nobr> is not approved by the W3C you could use nowrap instead.

That's for now there are some other but let's start from the easy things.


i forgot to mention the lines and the errors are for PhotoPlog Lite v.1.0.8
Regards Tefra

Morgan 02-19-2006 08:54 PM

Thanks Tefra, if you find any more just post 'em, and I'll try to get 'em all in one fell swoop next go around.

Tefra 02-20-2006 01:37 AM

sure thing i'll post everything i find here.

hehehe i don't like to loose any time

template photoplog_view_file

it gives many warnings because of the two forms for img and gallery url, unclosed form tags missings action , method attributes.....

you can change

HTML Code:

                                                <form action="" method="">
                                                <input style="width: 100%;" type="text" name="" value="[img]$photoplog_location/$vboptions[photoplog_upload_dir]/$photoplog_userid$photoplog_default_size/{$photoplog_filename}[/img]">
                                                </form>

with
HTML Code:

<input class="bginput" style="width: 100%;" type="text" value="[img]$photoplog_location/$vboptions[photoplog_upload_dir]/$photoplog_userid$photoplog_default_size/{$photoplog_filename}[/img]" />
and
HTML Code:

                                                <form action="" method="">
                                                <input style="width: 100%;" type="text" name="" value="[url]$photoplog_location/index.php?n={$photoplog_fileid}[/url]">
                                                </form>

with
HTML Code:

<input class="bginput"  style="width: 100%;" type="text" value="[url]$photoplog_location/index.php?n={$photoplog_fileid}[/url]" />
and you have just get rid of those errors.


All times are GMT. The time now is 07:50 PM.

Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.