This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<frontend> | |
<routers> | |
<newsletter> | |
<args> | |
<modules> | |
<extension_tag before="Mage_Newsletter">Company_Extension_Newsletter</extension_tag> | |
</modules> | |
</args> | |
</newsletter> |
This file contains 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
javascript:var body=document.body;body.removeChild(body.childNodes[1]);var html=document.documentElement;html.removeAttribute('style'); |
This file contains 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
define( ‘CONCATENATE_SCRIPTS’, false ); |
This file contains 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
$('.input-custom-small[data-toggle=typeahead-multiple]').each(function(){ | |
if( ! $('html').hasClass('ie-9') ) return; | |
var el = { | |
_self : $(this), | |
_core : $(this).parents('.text-core'), | |
_wrap : $(this).parents('.text-wrap'), | |
_placeholder : $(this).closest('better-placehoder') | |
}; | |
if( el._placeholder.length < 1 ) el._placeholder = el._core.siblings('.better-placehoder'); |
This file contains 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
$('[data-pop-content]').on('shown.bs.popover', function(){ | |
if( ! $('html').hasClass('ie-9') ) return; | |
$('[placeholder]').each(function(){ | |
$(this).prev('.better-placehoder').toggle( $(this).val() == '' ); | |
$(this).on('focus', function(){ | |
$(this).prev('.better-placehoder').hide(); | |
}).on('blur', function(){ | |
$(this).prev('.better-placehoder').toggle( $(this).val() == '' ); | |
}); | |
}); |
This file contains 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
A PHP Error was encountered | |
Severity: Notice | |
Message: Undefined property: stdClass::$username | |
Filename: controllers/group.php | |
Line Number: 517 |
This file contains 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
A PHP Error was encountered | |
Severity: Notice | |
Message: Undefined variable: resul | |
Filename: controllers/group_discussion.php | |
Line Number: 36 |
This file contains 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
public function reset_password($key = NULL) | |
{ | |
if($key) | |
{ | |
$row = $this->model_reset_password->get_reset_password($key); | |
if($row) | |
{ | |
$today = date('Y-m-d H:i:s'); | |
$expired = $row->date_created; |
This file contains 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
$(s.inputSelect) | |
.each(function() { | |
if ( !$().chosen ) return; | |
var noSearch = typeof $(this).data('no-search') !== 'undefined' ? $(this).data('no-search') : "true"; | |
$(this) | |
.each(function() { | |
var e = $(this).attr('data-nosearch', noSearch), | |
t = e.attr("data-nosearch") === "true" ? !0 : !1, | |
n = {}; | |
n.width = '100%'; |
This file contains 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
$(s.customPopover).each(function () { | |
if (!$().popover) return; | |
var popover = $(this), | |
backdrop = popover.data('backdrop'), | |
content = popover.attr('href') || popover.data('popover-content'), | |
getHtml; | |
$(content).hide(); | |
getHtml = function(){ | |
return $(content).html(); |
OlderNewer