Skip to content

Commit

Permalink
Merge pull request #5 from Anahkiasen/patch-1
Browse files Browse the repository at this point in the history
Fix incorrect method name
  • Loading branch information
vtalbot committed Jul 21, 2013
2 parents 6911510 + d50a5a5 commit 9e54320
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/VTalbot/Markdown/MarkdownServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace VTalbot\Markdown;

use \Config;
use \Markdown;
use \Route;
use \Response;
use \File;
use Config;
use Markdown;
use Route;
use Response;
use File;
use Illuminate\Support\ServiceProvider;
use Illuminate\View\Engines\CompilerEngine;
use Illuminate\View\Engines\EngineResolver;
Expand Down Expand Up @@ -79,7 +79,7 @@ public function registerMarkdownEngine($resolver)

$resolver->register('markdown', function() use ($app)
{
$cache = app_storage().'/markdown';
$cache = storage_path().'/markdown';

if ( ! File::isDirectory($cache))
{
Expand Down

0 comments on commit 9e54320

Please sign in to comment.