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
#!/usr/local/bin/python | |
import json | |
import re | |
import urllib2 | |
import subprocess | |
class Issue: | |
def __init__(self, number): | |
self.number = number |
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
/** | |
* Implements hook_init(). | |
*/ | |
function uc_cart_init() { | |
global $conf; | |
$conf['i18n_variables'][] = 'uc_cart_breadcrumb_text'; | |
$conf['i18n_variables'][] = 'uc_cart_help_text'; | |
$conf['i18n_variables'][] = 'uc_continue_shopping_text'; | |
// Don't cache any cart of checkout pages. |