Skip to content

Instantly share code, notes, and snippets.

@sewpafly
sewpafly / sitepress.class.php
Created January 19, 2012 07:03
WPML javascript loading error
<?php
// version 2.4.2
// line 1900
function js_load(){
if(is_admin() && !defined('DOING_AJAX')){
if(isset($_GET['page'])){
$page = basename($_GET['page']);
$page_basename = str_replace('.php','',$page);
@sewpafly
sewpafly / pte_functions.php
Created July 13, 2011 06:32
Try this for TypeError: cannot read property crop...
// Line 265
function pte_get_width_height( $size_information, $w, $h ){
if ( $size_information['crop'] == 1 ){
$dst_w = $size_information['width'];
// change to
function pte_get_width_height( $size_information, $w, $h ){
if ( isset( $size_information['crop'] ) && $size_information['crop'] ){
$dst_w = $size_information['width'];