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
Index: wpsc-includes/ajax.functions.php | |
=================================================================== | |
--- wpsc-includes/ajax.functions.php (révision 357938) | |
+++ wpsc-includes/ajax.functions.php (copie de travail) | |
@@ -958,10 +958,10 @@ | |
// strip out anything that isnt 'a' to 'z' or '0' to '9' | |
ini_set('max_execution_time',10800); | |
$downloadid = preg_replace( "/[^a-z0-9]+/i", '', strtolower( $_GET['downloadid'] ) ); | |
- $download_data = $wpdb->get_row( "SELECT * FROM `" . WPSC_TABLE_DOWNLOAD_STATUS . "` WHERE `uniqueid` = '" . $downloadid . "' AND `downloads` > '0' AND `active`='1' LIMIT 1", ARRAY_A ); | |
+ $download_data = $wpdb->get_row( "SELECT * FROM `" . WPSC_TABLE_DOWNLOAD_STATUS . "` WHERE `uniqueid` = '" . $downloadid . "' AND (`downloads` > '0' OR `downloads` < '0') AND `active`='1' LIMIT 1", ARRAY_A ); |
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
Index: wpsc-includes/misc.functions.php | |
=================================================================== | |
--- wpsc-includes/misc.functions.php (révision 357938) | |
+++ wpsc-includes/misc.functions.php (copie de travail) | |
@@ -92,6 +92,7 @@ | |
} | |
$credentials = array( 'user_login' => $user_login, 'user_password' => $user_pass, 'remember' => true ); | |
$user = wp_signon( $credentials ); | |
+ wp_set_current_user($user->ID); | |
return $user; |
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
Index: wpsc-includes/misc.functions.php | |
=================================================================== | |
--- wpsc-includes/misc.functions.php (révision 357938) | |
+++ wpsc-includes/misc.functions.php (copie de travail) | |
@@ -90,6 +90,11 @@ | |
$errors->add( 'registerfail', sprintf( __( '<strong>ERROR</strong>: Couldn’t register you... please contact the <a href="mailto:%s">webmaster</a> !', 'wpsc' ), get_option( 'admin_email' ) ) ); | |
return $errors; | |
} | |
+ | |
+ if ( get_option('registration_notice') === '1' ) { |
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
Index: includes/controller.php | |
=================================================================== | |
--- includes/controller.php (révision 350190) | |
+++ includes/controller.php (copie de travail) | |
@@ -3,10 +3,10 @@ | |
add_action( 'init', 'wpcf7_init_switch', 11 ); | |
function wpcf7_init_switch() { | |
- if ( 'GET' == $_SERVER['REQUEST_METHOD'] && isset( $_GET['_wpcf7_is_ajax_call'] ) ) { | |
+ if ( isset($_SERVER['REQUEST_METHOD']) && 'GET' == $_SERVER['REQUEST_METHOD'] && isset( $_GET['_wpcf7_is_ajax_call'] ) ) { |
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
Index: includes/controller.php | |
=================================================================== | |
--- includes/controller.php (révision 350190) | |
+++ includes/controller.php (copie de travail) | |
@@ -3,10 +3,10 @@ | |
add_action( 'init', 'wpcf7_init_switch', 11 ); | |
function wpcf7_init_switch() { | |
- if ( 'GET' == $_SERVER['REQUEST_METHOD'] && isset( $_GET['_wpcf7_is_ajax_call'] ) ) { | |
+ if ( isset($_SERVER['REQUEST_METHOD']) && 'GET' == $_SERVER['REQUEST_METHOD'] && isset( $_GET['_wpcf7_is_ajax_call'] ) ) { |
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
Index: auto-thickbox-info.php | |
=================================================================== | |
--- auto-thickbox-info.php (révision 350190) | |
+++ auto-thickbox-info.php (copie de travail) | |
@@ -6,4 +6,3 @@ | |
__('Image', 'auto-thickbox'); | |
__('of', 'auto-thickbox'); | |
__('Close', 'auto-thickbox'); | |
-?> | |
\ No newline at end of file |
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
A user PM pointed me to the Readme file inside the rom package: | |
[quote] | |
# Cronos Contact: [email protected] | |
# Are u interested in the sources used in this full rom? | |
# Please send me an email requesting information about these sources on specified email address. | |
# Please include in the subject line: "Cronos Sources" | |
################################################################## | |
# Cronos Scheduler and Governor are both Closed source. | |
################################################################## |
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
A user PM pointed me to the Readme file inside the rom package: | |
[quote] | |
# Cronos Contact: [email protected] | |
# Are u interested in the sources used in this full rom? | |
# Please send me an email requesting information about these sources on specified email address. | |
# Please include in the subject line: "Cronos Sources" | |
################################################################## | |
# Cronos Scheduler and Governor are both Closed source. | |
################################################################## |
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
pick 56f6e37 More properties overrides | |
pick 6ad0799 Libcamera sources (from SteelBytes) | |
pick 407b60d Builds libcamera | |
pick 18af184 Working libsensors. TODO: remove proximity sensor | |
pick fbd0cfd Htc usb switch for tethering | |
pick 0511823 Should make libcamera to build | |
pick b6907df Corrected omx packages to include | |
pick da097fc Inherit from full_base | |
pick 3a78b83 Removed TARGET_NO_RECOVERY | |
pick b667f89 wcdma first |
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
# Cronos Contact: [email protected] | |
# Are u interested in the sources used in this full rom? | |
# Please send me an email requesting information about these sources on specified email address. | |
# Please include in the subject line: "Cronos Sources" | |
################################################################## | |
# Cronos Scheduler and Governor are both Closed source. | |
################################################################## | |
GNU GENERAL PUBLIC LICENSE | |
Version 2, June 1991 |