From 1899213e6cf6a660c22d3170b223135704f12e82 Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Sun, 14 Apr 2013 00:30:54 +0200 Subject: [PATCH] Bug fix : autoblog folder on response message link --- 0.3/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/0.3/index.php b/0.3/index.php index be53a6c..3aabb50 100755 --- a/0.3/index.php +++ b/0.3/index.php @@ -118,7 +118,7 @@ function create_from_opml($opml) { $error = array_merge( $error, createAutoblog( $sitetype, $sitename, $siteurl, $rssurl, $error ) ); if( empty ( $error )) - $success[] = 'Autoblog "'. $sitename .'" crée avec succès. → afficher l\'autoblog.'; + $success[] = 'Autoblog "'. $sitename .'" crée avec succès. → afficher l\'autoblog.'; } catch (Exception $e) { $error[] = $e->getMessage(); @@ -534,7 +534,7 @@ if(!empty($_POST['socialaccount']) && !empty($_POST['socialinstance']) && ALLOW_ if( empty($error) ) { $error = array_merge( $error, createAutoblog($sitetype, ucfirst($socialinstance) .' - '. $socialaccount, $siteurl, $rssurl, $error)); if( empty($error)) - $success[] = ''.ucfirst($socialinstance) .' - '. $socialaccount.' ajouté avec succès.'; + $success[] = ''.ucfirst($socialinstance) .' - '. $socialaccount.' ajouté avec succès.'; } } }