Changeset 561 for trunk/Modules/IS/IS.php
- Timestamp:
- Aug 10, 2013, 12:37:21 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/IS/IS.php
r557 r561 199 199 { 200 200 foreach($FormClass['ItemActions'] as $Action) 201 $Output .= '<li><a href="'.$this->System->Link($Action['URL']).'&i='.$Id.'"><img alt="'.$Action['Caption'].'" title="'.$Action['Caption'].'" src="'. 201 { 202 $URL = $this->System->Link($Action['URL']); 203 if(strpos('?', $URL) === false) $URL .= '?'; 204 else if((substr($URL, -5, 5) !== '&') and (substr($URL, -1, 1) !== '?')) $URL .= '&'; 205 $URL .= '&i='.$Id; 206 $Output .= '<li><a href="'.$URL.'"><img alt="'.$Action['Caption'].'" title="'.$Action['Caption'].'" src="'. 202 207 $this->System->Link('/images/action.png').'"/>'.$Action['Caption'].'</a></li>'; 208 } 203 209 } 204 210 $Output .= '</ul><br/>'; … … 393 399 { 394 400 foreach($FormClass['ItemActions'] as $Action) 395 $RowActions .= '<a href="'.$this->System->Link($Action['URL']).'&i=#RowId"><img alt="'.$Action['Caption'].'" title="'.$Action['Caption'].'" src="'. 401 { 402 $URL = $this->System->Link($Action['URL']); 403 if(strpos('?', $URL) === false) $URL .= '?'; 404 else if((substr($URL, -5, 5) !== '&') and (substr($URL, -1, 1) !== '?')) $URL .= '&'; 405 $URL .= '&i=#RowId'; 406 $RowActions .= '<a href="'.$URL.'"><img alt="'.$Action['Caption'].'" title="'.$Action['Caption'].'" src="'. 396 407 $this->System->Link('/images/action.png').'"/></a>'; 408 } 397 409 } 398 410 $Output = $this->ShowTable($Table, $Filter, $Title, $RowActions, $ExcludeColumn);
Note:
See TracChangeset
for help on using the changeset viewer.