Changeset 1055 for trunk


Ignore:
Timestamp:
10/07/09 19:42:35 (3 years ago)
Author:
bogdan2412
Message:

Fix some invalid HTML.

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/common/db/smf.php

    r1052 r1055  
    5959// Updates SMF user information from a regular infoarena user. 
    6060function smf_update_user($ia_user) { 
    61  
    6261    $fields = array( 
    6362        'memberName' => $ia_user['username'], 
     
    113112        $is_smf_admin = true; 
    114113    } 
    115  
    116114    if (in_array(1, $additional_groups)) { 
    117115        $is_smf_admin = true; 
  • trunk/www/format/form.php

    r954 r1055  
    155155    // Format label. 
    156156    $label = "<label for=\"form_$field_name\""; 
    157     if (array_key_exists('access_key', $field_info)) { 
     157    if (array_key_exists(' access_key', $field_info)) { 
    158158        $label .= 'accesskey="'; 
    159159        $label .= $field_info['access_key']; 
  • trunk/www/views/header.php

    r1049 r1055  
    3434    if (getattr($view, 'page_name') == "home") { 
    3535?> 
    36     <meta name="Description" content="Concursuri de programare, Stiri si articole de informatica, Comunitate online. Arhiva de probleme, Evaluare 24/24, Forum, Resurse educationale, Pregatire pentru olimpiada."> 
    37     <meta name="keywords" content="Cocursuri, Informatica, Programare, Comunitate, Algoritmi, Articole, Evaluare, Pregatire"> 
     36    <meta name="Description" content="Concursuri de programare, Stiri si articole de informatica, Comunitate online. Arhiva de probleme, Evaluare 24/24, Forum, Resurse educationale, Pregatire pentru olimpiada." /> 
     37    <meta name="keywords" content="Cocursuri, Informatica, Programare, Comunitate, Algoritmi, Articole, Evaluare, Pregatire" /> 
    3838    <meta name="verify-v1" content="j9UCDYvsDL2pLtkJDDkE4HnHVmXakgvz30vOyIJ+6cI=" /> 
    3939    <meta name="verify-v1" content="ac36ilLp6y4xp71sJgZEjFMgow6YCLkyQLrG/b2iT/Q=" /> 
  • trunk/www/views/monitor.php

    r1017 r1055  
    7777                } 
    7878            } 
    79             $msg = "<span style=\"job-status-done\">$msg</span>"; 
     79            $msg = "<span class=\"job-status-done\">$msg</span>"; 
    8080            return format_link($url, $msg, false); 
    8181        } 
     
    9595        } 
    9696        if ($row['status'] == 'waiting') { 
    97             $msg = '<span style="job-stats-waiting">in asteptare</span>'; 
     97            $msg = '<span class="job-stats-waiting">in asteptare</span>'; 
    9898            return format_link($url, $msg, false); 
    9999        } 
  • trunk/www/views/register.php

    r986 r1055  
    8282    <ul class="form"> 
    8383        <li> 
    84             <script> 
     84            <script type="text/javascript"> 
    8585                var RecaptchaOptions = { 
    8686                theme : 'clean', 
  • trunk/www/views/tags_header.php

    r934 r1055  
    1919               '" id="form_'.$esc_name.'"'; 
    2020    if (!is_null($width)) { 
    21         $output .= ' width="'.$esc_width.'"'; 
     21        $output .= ' size="'.$esc_width.'"'; 
    2222    } 
    2323    if (!is_null($value)) { 
     
    2727    $output .= '<script type="text/javascript" language="JavaScript" src="'. 
    2828                html_escape(url_static("js/wick.js")).'"></script>'; 
    29     $output .= "</label></li>"; 
     29    $output .= "</li>"; 
    3030    return $output; 
    3131} 
  • trunk/www/views/task_edit.php

    r1053 r1055  
    104104<form action="<?= html_escape(url_task_delete()) ?>" method="post" style="float: right"> 
    105105    <input type="hidden" name="task_id" value="<?= html_escape($task_id) ?>" /> 
    106     <input onclick="return confirm('Aceasta actiune este ireversibila! Doresti sa continui?')") type="submit" value="Sterge problema" id="form_delete" class="button important" /> 
     106    <input onclick="return confirm('Aceasta actiune este ireversibila! Doresti sa continui?')" type="submit" value="Sterge problema" id="form_delete" class="button important" /> 
    107107</form> 
    108108<?php } ?> 
Note: See TracChangeset for help on using the changeset viewer.