Changeset 485
- Timestamp:
- Feb 10, 2013, 12:28:22 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Forms.php
r484 r485 143 143 $Values = array(); 144 144 foreach($this->Definition['Items'] as $Index => $Item) 145 { 146 if(!array_key_exists('ReadOnly', $Item)) $Item['ReadOnly'] = false; 147 if($Item['ReadOnly'] == false) 145 148 if(!array_key_exists($Item['Type'], $FormTypes) or 146 149 (array_key_exists($Item['Type'], $FormTypes) and ($FormTypes[$Item['Type']]['Type'] != 'ManyToOne'))) … … 166 169 167 170 //echo($DbRow[$Index].'='.$this->Values[$Index].'<br/>'); 171 } 168 172 } 169 173 if($Id == 0) -
trunk/Common/Global.php
r479 r485 440 440 $Parts[] = $Index.'='.$Item; 441 441 } 442 return(implode('& ', $Parts));442 return(implode('&', $Parts)); 443 443 } 444 444 -
trunk/Common/Page.php
r479 r485 107 107 function SystemMessage($Title, $Text) 108 108 { 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>'); 110 110 //ShowFooter(); 111 111 //die(); -
trunk/Modules/IS/IS.php
r484 r485 222 222 $Output .= '<li><a href="?a=list&t='.$Table.'"><img alt="Seznam" title="Seznam" src="'. 223 223 $this->System->Link('/images/list.png').'"/>Seznam</a></li>'; 224 $Output .= '</ul> </div>';224 $Output .= '</ul>'; 225 225 return($Output); 226 226 }
Note:
See TracChangeset
for help on using the changeset viewer.