Changeset 772944
- Timestamp:
- 09/15/2013 09:27:23 PM (13 years ago)
- File:
-
- 1 edited
-
bugerator/trunk/bugerator.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bugerator/trunk/bugerator.php
r772854 r772944 783 783 if (false == $wpdb->query($sql)) 784 784 return array('', "Cannot complete update"); 785 return array("Update Successful l", "");785 return array("Update Successful", ""); 786 786 } 787 787 … … 1629 1629 $mymain = new BugeratorMain; 1630 1630 $mymain->email_subscribers($select_me, "", $name, $log, true); 1631 return array('Update successful l.', '');1631 return array('Update successful.', ''); 1632 1632 } 1633 1633 … … 2043 2043 // process file if any. 2044 2044 if (isset($_FILES[$post_field]) and 2045 0 == $_FILES[$post_field]['error']) { // successful lfile load2045 0 == $_FILES[$post_field]['error']) { // successful file load 2046 2046 // hurray we have a file. 2047 2047 // Make sure it is text or picture … … 2535 2535 $this->email_subscribers($issue_id, $row['title'], $project_name, $change); 2536 2536 } 2537 return array('Update successful l.', '');2537 return array('Update successful.', ''); 2538 2538 } 2539 2539 … … 3850 3850 $issue_subscriber = $wpdb->get_results($sql); 3851 3851 foreach ($issue_subscriber as $subscriber) { 3852 if ( false === array_search($subscriber->user, $project_person)) {3852 if (true == is_array($project_person) and false === array_search($subscriber->user, $project_person)) { 3853 3853 $array['user'] = $subscriber->user; 3854 3854 $array['visited'] = $subscriber->visited;
Note: See TracChangeset
for help on using the changeset viewer.