Skip to content

Commit

Permalink
url handling
Browse files Browse the repository at this point in the history
  • Loading branch information
andibraeu authored Apr 12, 2021
1 parent 71859b9 commit 2c2e7f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wp-plugins/ffcommunityml/ffcommunityml.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function ffcommunitymltable($atts)
wp_enqueue_script("footable", plugin_dir_url( __FILE__ ). "js/footable.js");
wp_enqueue_script("footablesort", plugin_dir_url( __FILE__ ). "js/footable.sort.js");
wp_enqueue_style("cssfootablecore", plugin_dir_url( __FILE__ ). "css/footable.core.css");
$summaryUrl = esc_url($a['summaryurl']);
$summaryUrl = esc_url_raw($a['summaryurl']);
$columns = preg_match("/^[a-z,]*$/", $a['columns']) === 1 ? explode(',', $a['columns']) : explode(',', 'name,city');
$scriptid = uniqid("table-ml-data");

Expand Down

0 comments on commit 2c2e7f2

Please sign in to comment.