Skip to content

Commit

Permalink
FIX #466 - Import de flux OPML cassé
Browse files Browse the repository at this point in the history
Renommage de la bibliothèque SimplePie avec retrait du numéro de
version.

SimplePie.compiled-1.4.3-2-geb6dd2d.php -> SimplePie.class.php
  • Loading branch information
Sbgodin committed Jun 26, 2017
1 parent 7f99ea7 commit 6ebf420
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions action.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
switch ($action){
case 'commandLine':
case 'synchronize':
require_once("SimplePie.compiled-1.4.3-2-geb6dd2d.php");
require_once("SimplePie.class.php");
$syncCode = $configurationManager->get('synchronisationCode');
$syncGradCount = $configurationManager->get('syncGradCount');
if ( false==$myUser
Expand Down Expand Up @@ -296,7 +296,7 @@

case 'addFeed':
if($myUser==false) exit(_t('YOU_MUST_BE_CONNECTED_ACTION'));
require_once("SimplePie.compiled-1.4.3-2-geb6dd2d.php");
require_once("SimplePie.class.php");
if(!isset($_['newUrl'])) break;
$newFeed = new Feed();
$newFeed->setUrl(Functions::clean_url($_['newUrl']));
Expand Down Expand Up @@ -565,7 +565,7 @@
break;

default:
require_once("SimplePie.compiled-1.4.3-2-geb6dd2d.php");
require_once("SimplePie.class.php");
Plugin::callHook("action_post_case", array(&$_,$myUser));
//exit('0');
break;
Expand Down

0 comments on commit 6ebf420

Please sign in to comment.