Skip to content

Commit 64ddc9b

Browse files
committed
chore: fix broken code
1 parent 85fd914 commit 64ddc9b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

includes/admin/feedzy-rss-feeds-import.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public function feedzy_import_feed_options() {
328328
$post_types = array_diff( $post_types, array( 'feedzy_imports', 'feedzy_categories' ) );
329329
$published_status = array( 'publish', 'draft' );
330330

331-
$authors = get_users( array( 'number' => 100 ) );
331+
$authors = get_users( array( 'number' => 100 ) );
332332
$authors_array = array();
333333
foreach ( $authors as $author ) {
334334
$authors_array[] = $author->user_login;
@@ -377,6 +377,7 @@ public function feedzy_import_feed_options() {
377377
'to_datetime' => $to_datetime,
378378
)
379379
);
380+
}
380381

381382
/**
382383
* This code snippet retrieves the post author for backward compatibility for existing imports as well as for any new imports.
@@ -1297,7 +1298,6 @@ function ( $errors, $feed, $url ) {
12971298
wp_send_json_success( array( 'output' => do_shortcode( $shortcode ) ) );
12981299
}
12991300

1300-
13011301
/**
13021302
* The Cron Job.
13031303
*
@@ -2520,7 +2520,6 @@ public function feedzy_is_license_of_type( $default, $type ) {
25202520
return $default;
25212521
}
25222522

2523-
25242523
/**
25252524
* Method for updating settings page via AJAX.
25262525
*

0 commit comments

Comments
 (0)