Skip to content

Commit

Permalink
Using pull request for workflow.php
Browse files Browse the repository at this point in the history
  • Loading branch information
vdesabou committed May 29, 2014
1 parent a4872d4 commit 4c73f1c
Show file tree
Hide file tree
Showing 5 changed files with 517 additions and 4 deletions.
3 changes: 2 additions & 1 deletion action.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@


// Load and use David Ferguson's Workflows.php class
$files = __load( "Workflows" );
//$files = __load( "Workflows" );
require_once('workflows.php');
$w = new Workflows;

$query = $argv[1];
Expand Down
3 changes: 2 additions & 1 deletion debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@


// Load and use David Ferguson's Workflows.php class
$files = __load( "Workflows" );
//$files = __load( "Workflows" );
require_once('workflows.php');
$w = new Workflows;


Expand Down
3 changes: 2 additions & 1 deletion kill_update.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@


// Load and use David Ferguson's Workflows.php class
$files = __load( "Workflows" );
//$files = __load( "Workflows" );
require_once('workflows.php');
$w = new Workflows;

unlink($w->data() . "/update_library_in_progress");
Expand Down
3 changes: 2 additions & 1 deletion main.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@


// Load and use David Ferguson's Workflows.php class
$files = __load( "Workflows" );
//$files = __load( "Workflows" );
require_once('workflows.php');
$w = new Workflows;


Expand Down
Loading

0 comments on commit 4c73f1c

Please sign in to comment.