Changeset 2566:9bf417837888 for plugins/pings/index.php
- Timestamp:
- 11/17/13 20:25:53 (12 years ago)
- Branch:
- 2.6
- Children:
- 2567:6c11245cbf04, 2568:61c67a7d17fa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pings/index.php
r2322 r2566 20 20 $pings_uris = array(); 21 21 } 22 22 23 23 if (isset($_POST['pings_srv_name'])) 24 24 { … … 26 26 $pings_srv_uri = is_array($_POST['pings_srv_uri']) ? $_POST['pings_srv_uri'] : array(); 27 27 $pings_uris = array(); 28 28 29 29 foreach ($pings_srv_name as $k => $v) { 30 30 if (trim($v) && trim($pings_srv_uri[$k])) { … … 32 32 } 33 33 } 34 34 35 35 $core->blog->settings->addNamespace('pings'); 36 36 $core->blog->settings->pings->put('pings_active',!empty($_POST['pings_active']),null,null,true,true); … … 72 72 '<label for="pings_srv_uri-'.$i.'" class="classic">'.__('Service URI:').'</label> '. 73 73 form::field(array('pings_srv_uri[]','pings_srv_uri-'.$i),40,255,html::escapeHTML($u)); 74 74 75 75 if (!empty($_GET['test'])) 76 76 { … … 82 82 } 83 83 } 84 84 85 85 echo '</p>'; 86 86 $i++;
Note: See TracChangeset
for help on using the changeset viewer.