Changeset 120:1a582dc70e52
- Timestamp:
- 05/02/11 22:35:25 (14 years ago)
- Branch:
- userprefs
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pings/lib.pings.php
r94 r120 60 60 61 61 echo '<h3 class="ping-services">'.__('Pings:').'</h3>'; 62 $i = 0; 62 63 foreach ($pings_uris as $k => $v) 63 64 { 64 65 echo 65 '<p class="ping-services"><label for="pings_do " class="classic">'.66 form::checkbox(array('pings_do[]','pings_do '),html::escapeHTML($v),in_array($v,$pings_do)).' '.66 '<p class="ping-services"><label for="pings_do-'.$i.'" class="classic">'. 67 form::checkbox(array('pings_do[]','pings_do-'.$i),html::escapeHTML($v),in_array($v,$pings_do)).' '. 67 68 html::escapeHTML($k).'</label></p>'; 69 $i++; 68 70 } 69 71 }
Note: See TracChangeset
for help on using the changeset viewer.