Closed JDGrimes closed 7 years ago
I just saw WP@39820, and realized that we have the same issue. In wordpoints_list_module_updates(), we call wordpoints_get_module_updates(), which calls wordpoints_get_modules() without $markup or $translate set to true.
wordpoints_list_module_updates()
wordpoints_get_module_updates()
wordpoints_get_modules()
$markup
$translate
Fixed in WordPoints/wordpoints#645, since we now call wordpoints_get_module_data(), which defaults both of these to true.
wordpoints_get_module_data()
I just saw WP@39820, and realized that we have the same issue. In
wordpoints_list_module_updates()
, we callwordpoints_get_module_updates()
, which callswordpoints_get_modules()
without$markup
or$translate
set to true.