This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git diff | |
diff --git a/jigoshop.php b/jigoshop.php | |
index 9874228..5d04ff9 100644 | |
--- a/jigoshop.php | |
+++ b/jigoshop.php | |
@@ -631,7 +631,7 @@ function jigoshop_price( $price, $args = array() ) { | |
$return = $currency_symbol . $price . $currency_code; | |
break; | |
case 'symbol_code_space' : | |
- $return = $currency_code . ' ' . $price . ' ' . $currency_code; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/drush_make.download.inc b/drush_make.download.inc | |
index 92c68f9..106269f 100644 | |
--- a/drush_make.download.inc | |
+++ b/drush_make.download.inc | |
@@ -12,7 +12,12 @@ function drush_make_download_factory($name, $download, $download_location) { | |
function drush_make_download_cvs($name, $download, $download_location) { | |
if (!empty($download['module'])) { | |
- if (drush_get_option('working-copy')) { | |
+ if ( isset ( $download['working-copy'] ) ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>Flot Pie Examples</title> | |
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="flot/excanvas.min.js"></script><![endif]--> | |
<script language="javascript" type="text/javascript" src="flot/jquery.js"></script> | |
<script language="javascript" type="text/javascript" src="flot/jquery.flot.js"></script> | |
<script language="javascript" type="text/javascript" src="flot/jquery.flot.pie.js"></script> | |
<?php $percentage = rand(1,100); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- old/theme.js 2012-06-25 20:00:45.389783955 +0100 | |
+++ new/theme.js 2012-06-25 19:59:43.805786530 +0100 | |
@@ -667,7 +667,7 @@ | |
var i = 0; //counter | |
// loops through all selections and check if all has been selected to proceed (also captures all variation ids) | |
- jQuery("select", parent_form).each(function() { | |
+ jQuery("select.wpsc_select_variation_ajax", parent_form).each(function() { | |
if (jQuery("option:selected",this).val() == 0) { | |
allSelected = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ls -lrt | |
drwxr-xr-x 10 lee lee 4096 Jul 14 16:52 woocommerce | |
lrwxrwxrwx 1 lee lee 51 Jul 19 19:58 woocommerce-msrp -> /home/lee/svn/woocommerce-plugins/woocommerce-msrp/ | |
lrwxrwxrwx 1 lee lee 62 Jul 19 19:58 woocommerce-social-checkout -> /home/lee/svn/woocommerce-plugins/woocommerce-social-checkout/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- wf-display-functions.php.orig 2012-07-23 22:13:49.026990879 +0100 | |
+++ wf-display-functions.php 2012-07-23 22:17:44.358981036 +0100 | |
@@ -1848,20 +1848,22 @@ | |
// Backpat - depreciated function get_current_theme() in WordPress 3.4 | |
$theme_name = preg_replace('/[^a-zA-Z0-9]/','_', ( WF_WORDPRESS_VERSION < 3.4 ) ? get_current_theme() : wp_get_theme()->Name); | |
+ /* Risk of the transient key ooverflowing the allowed size - WordPress has a bug where key's > 32 chars | |
+ * will appear to have been set, but won't be retrievable */ | |
$transient_key = empty($transient_key) ? $theme_name.'_cache_'.$part : $transient_key; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- wf-display-functions.php.orig 2012-07-25 21:43:07.050252166 +0100 | |
+++ wf-display-functions.php 2012-07-25 21:47:03.102242294 +0100 | |
@@ -8,12 +8,26 @@ | |
class wflux_display_code extends wflux_data { | |
protected $xml_namespaces; | |
+ private $cache_theme_name = null; | |
function __construct() { | |
parent::__construct(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mixed indentation examples: | |
foreach ( $foo as $bar ) { | |
$foo = array ( "this" => "that", | |
"them" => "three" ); | |
$sql = "SELECT * | |
FROM foo | |
WHERE y = z"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action ( 'init', function() { | |
global $wp_rewrite; | |
add_rewrite_endpoint('testendpoint', EP_ROOT); | |
$wp_rewrite->flush_rules(); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sirportly.module b/sirportly.module | |
index 6872dcf..2fbe075 100644 | |
--- a/sirportly.module | |
+++ b/sirportly.module | |
@@ -33,6 +33,21 @@ function sirportly_init() { | |
} | |
/** | |
+ * Implements hook_libraries_info(). | |
+ */ |
OlderNewer