development version 2.1.1d1: more bugfixes for Forum User
git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@2415401 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
18305dee4f
commit
6c776388c9
6 changed files with 88 additions and 73 deletions
|
@ -140,7 +140,7 @@ class MCI_Footnotes {
|
|||
// <https://wordpress.org/support/topic/tooltip-hover-not-showing/#post-13456762>:
|
||||
// This was enabled in Footnotes v2.0.0 through v2.0.3.
|
||||
// Re-added for 2.0.9d1 / 2.1.1d0 to look whether it can fix a broken tooltip display. 2020-11-07T1601+0100/2020-11-08T2246+0100
|
||||
wp_register_script( 'jQueryUI', 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js', null, null, true );
|
||||
wp_register_script( 'jQueryUI', 'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js', null, null, false ); // in header 2020-11-09T2003+0100
|
||||
wp_enqueue_script( 'jQueryUI' );
|
||||
|
||||
// Add jQuery Tools and finish adding jQueryUI: 2020-11-08T1638+0100/2020-11-08T2246+0100
|
||||
|
@ -154,7 +154,7 @@ class MCI_Footnotes {
|
|||
'mci-footnotes-css-public',
|
||||
plugins_url('../css/public.css', __FILE__),
|
||||
'',
|
||||
'2.1.1d0'
|
||||
'2.1.1d1'
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -258,17 +258,17 @@ class MCI_Footnotes_Task {
|
|||
* @since 1.5.4
|
||||
* @param array|WP_Post $p_mixed_Posts
|
||||
*/
|
||||
// public function the_post(&$p_mixed_Posts) {
|
||||
// // single WP_Post object received
|
||||
// if (!is_array($p_mixed_Posts)) {
|
||||
// $p_mixed_Posts = $this->replacePostObject($p_mixed_Posts);
|
||||
// return;
|
||||
// }
|
||||
// // array of WP_Post objects received
|
||||
// for($l_int_Index = 0; $l_int_Index < count($p_mixed_Posts); $l_int_Index++) {
|
||||
// $p_mixed_Posts[$l_int_Index] = $this->replacePostObject($p_mixed_Posts[$l_int_Index]);
|
||||
// }
|
||||
// }
|
||||
public function the_post(&$p_mixed_Posts) {
|
||||
// single WP_Post object received
|
||||
if (!is_array($p_mixed_Posts)) {
|
||||
$p_mixed_Posts = $this->replacePostObject($p_mixed_Posts);
|
||||
return;
|
||||
}
|
||||
// array of WP_Post objects received
|
||||
for($l_int_Index = 0; $l_int_Index < count($p_mixed_Posts); $l_int_Index++) {
|
||||
$p_mixed_Posts[$l_int_Index] = $this->replacePostObject($p_mixed_Posts[$l_int_Index]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Replace all Footnotes in a WP_Post object.
|
||||
|
|
Reference in a new issue