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
|
@ -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