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
13:38:02 Starting mission: | |
13:38:02 Mission file: Infantry_KingOfTheHill_RHS_by_Sa-Matra_for_CODE4 (__CUR_MP) | |
13:38:02 Mission world: Altis | |
13:38:02 Mission directory: mpmissions\__CUR_MP.Altis\ | |
13:38:03 DX11 error : CreateTexture failed : E_OUTOFMEMORY | |
13:38:03 DX11 error : CreateTexture failed : E_OUTOFMEMORY | |
13:38:03 DX11 error : CreateTexture failed : E_OUTOFMEMORY | |
13:38:03 DX11 error : CreateTexture failed : E_OUTOFMEMORY | |
13:38:03 DX11 error : CreateTexture failed : E_OUTOFMEMORY | |
13:38:03 DX11 error : CreateTexture failed : E_OUTOFMEMORY |
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
.dp_image_field_container .dp_file_thumb { | |
width: 50px !important; | |
height: 50px !important; | |
} |
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
.dp_image_field_container .dp_file_thumb { | |
width: 150px !important; | |
height: 150px !important; | |
} | |
.dp_thumb_container { | |
height: 150px; | |
vertical-align: top; | |
} |
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
<?php | |
$result = $result - $product_price; |
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
$context = Context::getContext(); | |
$declarations = array( | |
'id_guest' => $context->cookie->id_guest, | |
'id_cart' => $context->cart->id, | |
'id_customer' => $context->customer->id, | |
); |
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
body.designer .thumbnails { | |
display: none; | |
} |
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
<?php | |
$sql = new DbQuery(); | |
$sql->from('fmm_registration_userdata'); | |
$sql->select('value'); | |
$sql->where('id_customer = ' . (int)$customerId); | |
$sql->where('id_fmm_registration_fields = 3'); | |
$price_gold = Db::getInstance()->getValue($sql); |
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
#!/bin/bash | |
# this script starts filezilla | |
#filezilla </dev/null &>/dev/null & | |
# file changed dialog title to look for | |
title="File has changed" | |
last_window_id=0 |
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
<?php | |
// Lines 272 & 273 of the file /modules/paypal/classes/MethodEC.php | |
// add id_customization to include the customization cost | |
// in PrestaShop 1.7, customizations can have a cost & weight impact just like combinations | |
$priceIncl = $this->formatPrice($productObj->getPrice(true, $product['id_product_attribute'], 6, null, false, true, 1, $product['id_customization'])); | |
$priceExcl = $this->formatPrice($productObj->getPrice(false, $product['id_product_attribute'], 6, null, false, true, 1, $product['id_customization'])); |
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: modules/paypal/classes/MethodEC.php | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- modules/paypal/classes/MethodEC.php (date 1592596552365) | |
+++ modules/paypal/classes/MethodEC.php (date 1592596552365) | |
@@ -269,8 +269,8 @@ | |
foreach ($products as $product) { | |
$itemDetails = new PaymentDetailsItemType(); |