Changeset 485 for trunk


Ignore:
Timestamp:
Feb 10, 2013, 12:28:22 PM (12 years ago)
Author:
chronos
Message:
  • Opraveno: Neukládat položky ve formuláři, které jsou jen pro čtení.
  • Opraveno: Formátování html ve zobrazení ISu.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Forms.php

    r484 r485  
    143143    $Values = array();
    144144    foreach($this->Definition['Items'] as $Index => $Item)
     145    {
     146      if(!array_key_exists('ReadOnly', $Item)) $Item['ReadOnly'] = false;
     147      if($Item['ReadOnly'] == false)
    145148    if(!array_key_exists($Item['Type'], $FormTypes) or
    146149    (array_key_exists($Item['Type'], $FormTypes) and ($FormTypes[$Item['Type']]['Type'] != 'ManyToOne')))
     
    166169       
    167170        //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>');
     171    }
    168172    }
    169173    if($Id == 0)
  • trunk/Common/Global.php

    r479 r485  
    440440    $Parts[] = $Index.'='.$Item;
    441441  }
    442   return(implode('&', $Parts));
     442  return(implode('&amp;', $Parts));
    443443}
    444444
  • trunk/Common/Page.php

    r479 r485  
    107107  function SystemMessage($Title, $Text)
    108108  {
    109     return('<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div</td></tr></table>');
     109    return('<table align="center"><tr><td><div class="SystemMessage"><h3>'.$Title.'</h3><div>'.$Text.'</div></div></td></tr></table>');
    110110    //ShowFooter();
    111111    //die();
  • trunk/Modules/IS/IS.php

    r484 r485  
    222222    $Output .= '<li><a href="?a=list&amp;t='.$Table.'"><img alt="Seznam" title="Seznam" src="'.
    223223        $this->System->Link('/images/list.png').'"/>Seznam</a></li>';
    224     $Output .= '</ul></div>';
     224    $Output .= '</ul>';
    225225    return($Output);
    226226  }
Note: See TracChangeset for help on using the changeset viewer.