diff --git a/classes/WhatDidTheySayAdmin.inc b/classes/WhatDidTheySayAdmin.inc index 4146b3c..1b88764 100644 --- a/classes/WhatDidTheySayAdmin.inc +++ b/classes/WhatDidTheySayAdmin.inc @@ -1074,7 +1074,7 @@ class WhatDidTheySayAdmin { * Show the Manage Transcriptions meta box. */ function manage_transcriptions_meta_box() { - global $post; + global $post, $wpdb; $options = get_option('what-did-they-say-options'); diff --git a/classes/partials/_show-sample-transcript.inc b/classes/partials/_show-sample-transcript.inc index 05152a0..36ea864 100644 --- a/classes/partials/_show-sample-transcript.inc +++ b/classes/partials/_show-sample-transcript.inc @@ -5,8 +5,6 @@ -
- -
+ \ No newline at end of file diff --git a/what-did-they-say.php b/what-did-they-say.php index c4436ee..ee7765e 100644 --- a/what-did-they-say.php +++ b/what-did-they-say.php @@ -182,7 +182,7 @@ function transcripts_display($language_format = null, $show_transcripts_string = * If you're allowing users to submit transcripts to the post transcript queue, use this tag in your Loop. */ function the_media_transcript_queue_editor() { - global $post; + global $post, $wpdb; if (current_user_can('submit_transcriptions')) { $queued_transcript_object = new WDTSQueuedTranscript($post->ID);