Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added filter to for stylesheet call #76

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions ui/input_form.php
Expand Up @@ -9,7 +9,7 @@
if (!wp_script_is('pods-ui', 'queue') && !wp_script_is('pods-ui', 'to_do') && !wp_script_is('pods-ui', 'done')) if (!wp_script_is('pods-ui', 'queue') && !wp_script_is('pods-ui', 'to_do') && !wp_script_is('pods-ui', 'done'))
wp_print_scripts('pods-ui'); wp_print_scripts('pods-ui');
?> ?>
<link rel="stylesheet" type="text/css" href="<?php echo PODS_URL; ?>/ui/style.css" /> <link rel="stylesheet" type="text/css" href="<?php echo apply_filters('pods_form_stylesheet_url', PODS_URL.'/ui/style.css'); ?>" />
<script type="text/javascript"> <script type="text/javascript">
var active_file; var active_file;


Expand Down Expand Up @@ -153,4 +153,4 @@ function fileBrowser() {
<?php <?php
//post-form hooks //post-form hooks
do_action('pods_post_form',$form_count,$this); do_action('pods_post_form',$form_count,$this);
do_action("pods_post_form_{$this->datatype}",$form_count,$this); do_action("pods_post_form_{$this->datatype}",$form_count,$this);