Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
* Fix issue publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Allen committed Jun 24, 2011
1 parent 8db83c2 commit 8cfbad0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
17 changes: 11 additions & 6 deletions src/autoload.php
Expand Up @@ -29,7 +29,17 @@
// define app constants
define('APP_ID', 'enzyme');
define('APP_NAME', 'Enzyme');
define('VERSION', '1.12');
define('VERSION', '1.13');


// define meta tags
define('META_DESCRIPTION', 'A project-independent tool for creating regular project reports and assisting interesting statistical analysis.');
define('META_KEYWORDS', 'enzyme, digest, open source');


// make APP_ID's consistently available
define('DIGEST_APP_ID', 'commit-digest');
define('ENZYME_APP_ID', APP_ID);

define('JAVASCRIPT_LIBRARY', 'prototype');

Expand Down Expand Up @@ -154,11 +164,6 @@ function __autoload($class) {
}


// define meta tags
define('META_DESCRIPTION', 'A project-independent tool for creating regular project reports and assisting interesting statistical analysis.');
define('META_KEYWORDS', 'enzyme, digest, open source');


// define environment settings
if (COMMAND_LINE) {
// set command line vars (error reporting, etc)
Expand Down
3 changes: 2 additions & 1 deletion src/get/publish.php
Expand Up @@ -62,7 +62,8 @@
'issue_earliest',
'archive_latest',
'archive_latest_unpublished',
'archive_earliest'), 'digest');
'archive_earliest'),
DIGEST_APP_ID);


// report success
Expand Down

0 comments on commit 8cfbad0

Please sign in to comment.