Skip to:
Content

BuddyPress.org

Ticket #223: loader.php_for_win_n_linux.patch

File loader.php_for_win_n_linux.patch, 495 bytes (added by burtadsit, 16 years ago)

patch to loader.php in member css dir for windows and linux file names

  • loader.php

     
    11<?php
    22
    33/* Load the WP environment */
    4 require_once( preg_replace('/(.*)\/wp-content\/.*/', '\1', dirname( __FILE__ ) ) . '/wp-load.php' );
     4require_once( preg_replace('%(.*)[/\\\\]wp-content[/\\\\].*%', '\1', dirname( __FILE__ ) ) . '/wp-load.php' );
    55
    66/* Set the content type to CSS */
    77header('Content-type: text/css');