Skip to content

Commit

Permalink
Allow MythWeb to fire off metadata lookup jobs.
Browse files Browse the repository at this point in the history
Fixes #9924, thank you for the patch, Doug.
  • Loading branch information
Robert McNamara committed Jul 17, 2011
1 parent 19602ef commit 0d9e4e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion includes/jobqueue.php
Expand Up @@ -70,6 +70,7 @@
define('JOB_SYSTEMJOB', 0x00ff);
define('JOB_TRANSCODE', 0x0001);
define('JOB_COMMFLAG', 0x0002);
define('JOB_METADATA', 0x0004);
define('JOB_USERJOB', 0xff00);
define('JOB_USERJOB1', 0x0100);
define('JOB_USERJOB2', 0x0200);
Expand All @@ -82,7 +83,8 @@
/**/
global $Jobs;
$Jobs = array(JOB_TRANSCODE => t('Transcode'),
JOB_COMMFLAG => t('Flag Commercials')
JOB_COMMFLAG => t('Flag Commercials'),
JOB_METADATA => t('Look up Metadata')
);

// Load up any defined user jobs
Expand Down

0 comments on commit 0d9e4e3

Please sign in to comment.