Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
feeds
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal.org
feeds
Commits
12ba86a0
Commit
12ba86a0
authored
14 years ago
by
Alex Barth
Browse files
Options
Downloads
Patches
Plain Diff
#933306: Fix Feeds creates subscriptions for not existing importers.
parent
97ed22b7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.txt
+1
-0
1 addition, 0 deletions
CHANGELOG.txt
feeds.pages.inc
+4
-1
4 additions, 1 deletion
feeds.pages.inc
with
5 additions
and
1 deletion
CHANGELOG.txt
+
1
−
0
View file @
12ba86a0
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
Feeds 7.x 2.0 XXXXXXXXXXXXXXXXXXX
Feeds 7.x 2.0 XXXXXXXXXXXXXXXXXXX
---------------------------------
---------------------------------
- #933306 alex_b: Fix Feeds creates subscriptions for not existing importers.
- #946822 twistor: FeedsSitemapParser broken: Serialization of
- #946822 twistor: FeedsSitemapParser broken: Serialization of
'SimpleXMLElement' is not allowed.
'SimpleXMLElement' is not allowed.
- #949916 alex_b: Convert values mapped to user->created.
- #949916 alex_b: Convert values mapped to user->created.
...
...
This diff is collapsed.
Click to expand it.
feeds.pages.inc
+
4
−
1
View file @
12ba86a0
...
@@ -187,7 +187,10 @@ function feeds_delete_tab_form_submit($form, &$form_state) {
...
@@ -187,7 +187,10 @@ function feeds_delete_tab_form_submit($form, &$form_state) {
*/
*/
function
feeds_fetcher_callback
(
$importer
,
$feed_nid
=
0
)
{
function
feeds_fetcher_callback
(
$importer
,
$feed_nid
=
0
)
{
if
(
$importer
instanceof
FeedsImporter
)
{
if
(
$importer
instanceof
FeedsImporter
)
{
return
$importer
->
fetcher
->
request
(
$feed_nid
);
try
{
return
$importer
->
fetcher
->
request
(
$feed_nid
);
}
catch
(
Exception
$e
)
{}
}
}
drupal_access_denied
();
drupal_access_denied
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment