Bug #2490 » cb.pagination.patch
| administrator/components/com_comprofiler/library/cb/cb.pagination.php | ||
|---|---|---|
|
$alt = CBTxt::T('Move Up');
|
||
|
}
|
||
|
$alt = htmlspecialchars( $alt );
|
||
|
$output = '<a href="#ordering" onclick="listItemTask(\'cb'.$id.'\',\'orderup\')" title="'. $alt .'">';
|
||
|
$output = '<a href="#ordering" onclick="cbListItemTask( this, \'orderup\', null, null, \'cb\', \''.$id.'\' )" title="'. $alt .'">';
|
||
|
$output .= '<img src="images/' . $img . '" width="12" height="12" border="0" alt="'. $alt .'" title="'. $alt .'" /></a>';
|
||
|
|
||
|
return $output;
|
||
| ... | ... | |
|
$alt = CBTxt::T('Move Down');
|
||
|
}
|
||
|
$alt = htmlspecialchars( $alt );
|
||
|
$output = '<a href="#ordering" onclick="listItemTask(\'cb'.$id.'\',\'orderdown\')" title="'. $alt .'">'
|
||
|
$output = '<a href="#ordering" onclick="cbListItemTask( this, \'orderdown\', null, null, \'cb\', \''.$id.'\' )" title="'. $alt .'">'
|
||
|
. '<img src="images/' . $img . '" width="12" height="12" border="0" alt="'. $alt .'" title="'. $alt .'" /></a>';
|
||
|
|
||
|
return $output;
|
||