Plugin Directory

Changeset 631110


Ignore:
Timestamp:
11/28/2012 08:42:09 AM (13 years ago)
Author:
codestyling
Message:

quick-repair

Location:
codestyling-localization/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • codestyling-localization/trunk/codestyling-localization.php

    r631091 r631110  
    6161  return array("$scheme$user$pass$host$port","$path$query$fragment");
    6262}
     63
     64if (!function_exists('get_site_url')) {
     65    function get_site_url() { return get_option('site_url'); }
     66}
     67if (!function_exists('plugins_url')) {
     68    function plugins_url($plugin) {  return WP_PLUGIN_URL . '/' . plugin_basename($plugin); }
     69}
    6370
    6471if (function_exists('add_action')) {
     
    29342941    ) {
    29352942        print '<link rel="stylesheet" href="'.get_site_url()."/wp-includes/js/thickbox/thickbox.css".'" type="text/css" media="screen"/>';
    2936         print '<link rel="stylesheet" href="'.CSP_PO_BASE_URL.'/codestyling-localization.php?css=default'.'" type="text/css" media="screen"/>';
     2943        print '<link rel="stylesheet" href="'.CSP_PO_BASE_URL.'/css/ui.all.css'.'" type="text/css" media="screen"/>';
     2944        print '<link rel="stylesheet" href="'.CSP_PO_BASE_URL.'/css/plugin.css'.'" type="text/css" media="screen"/>';
     2945        if(function_exists('is_rtl') && is_rtl())
     2946            print '<link rel="stylesheet" href="'.CSP_PO_BASE_URL.'/css/plugin-rtl.css'.'" type="text/css" media="screen"/>';
    29372947    }
    29382948}
  • codestyling-localization/trunk/readme.txt

    r631094 r631110  
    8282== Changelog ==
    8383
     84= Version 1.99.27 =
     85* Bugfix: WordPress version 3.5 starts removing prototype.js and scriptaculous but falls back to google CDN include which brokes JSON requests
     86* Bugfix: CDN verification returned an error object and caused a fatal error if external script can't be verified
     87* Bugfix: german translation contains untranslated terms
     88* Bugfix: compatibility improved and checked, still compatible with WordPress >= 2.5
     89
    8490= Version 1.99.26 =
    8591* Bugfix: WordPress version 3.5 starts removing prototype.js and scriptaculous but falls back to google CDN include which brokes JSON requests
Note: See TracChangeset for help on using the changeset viewer.