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
| <template> | |
| <b-container class="d-flex flex-column min-vh-100"> | |
| <b-navbar fixed> | |
| <b-navbar-brand> | |
| <Logo class="float-left w-25 h-25 mr-3" /> | |
| <strong>Druxt Me'n'U</strong><br /> | |
| <small>A Personal Shopping Experience</small> | |
| </b-navbar-brand> | |
| </b-navbar> |
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
| diff --git a/fpdf_tpl.php b/fpdf_tpl.php | |
| index 8482ba3..1ff89a8 100644 | |
| --- a/fpdf_tpl.php | |
| +++ b/fpdf_tpl.php | |
| @@ -272,7 +272,7 @@ class FPDF_TPL extends FPDF { | |
| /** | |
| * See FPDF/TCPDF-Documentation ;-) | |
| */ | |
| - public function SetFont($family, $style = '', $size = 0) { | |
| + public function SetFont($family, $style = '', $size = 0, $fontfile = '', $subset = 'default', $out = true) { |
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
| diff --git a/fpdf_tpl.php b/fpdf_tpl.php | |
| new file mode 100644 | |
| index 0000000..86e38b7 | |
| --- /dev/null | |
| +++ b/fpdf_tpl.php | |
| @@ -0,0 +1,460 @@ | |
| +<?php | |
| +// | |
| +// FPDF_TPL - Version 1.2.3 | |
| +// |
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
| core = 6.x | |
| api = 2 | |
| ; Drupal core | |
| projects[drupal][type] = core | |
| projects[drupal][version] = 6.28 | |
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
| core = 6.x | |
| api = 2 | |
| ; Drupal core | |
| projects[drupal][type] = core | |
| projects[drupal][version] = 6.28 | |
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
| diff --git a/script/literals/SassNumber.php b/script/literals/SassNumber.php | |
| index bf59044..0e84820 100755 | |
| --- a/script/literals/SassNumber.php | |
| +++ b/script/literals/SassNumber.php | |
| @@ -207,7 +207,7 @@ class SassNumber extends SassLiteral { | |
| )); | |
| } | |
| else { | |
| - return new SassNumber(($this->value / $other->value).$this->unitString( | |
| + return new SassNumber(($this->value == 0 ? 0 : ($this->value / $other->value)).$this->unitString( |
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
| diff --git a/homebox.install b/homebox.install | |
| index 20f0b91..43eb740 100644 | |
| --- a/homebox.install | |
| +++ b/homebox.install | |
| @@ -148,3 +148,162 @@ function homebox_update_6003() { | |
| return $return; | |
| } | |
| + | |
| +/** |
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
| diff --git modules/flickholdr_image_provider/flickholdr_image_provider.module modules/flickholdr_image_provider/flickholdr_image_provider.module | |
| index 75649a2..b931367 100644 | |
| --- modules/flickholdr_image_provider/flickholdr_image_provider.module | |
| +++ modules/flickholdr_image_provider/flickholdr_image_provider.module | |
| @@ -34,9 +34,11 @@ function _flickholdr_image_provider_generate_image($object, $field, $instance, $ | |
| $min = explode('x', $min_resolution); | |
| $max = explode('x', $max_resolution); | |
| + $max[0] = $max[0] < $min[0] ? $min[0] : $max[0]; | |
| + $max[1] = $max[1] < $min[1] ? $min[1] : $max[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
| diff --git profiles/minimal/minimal.info profiles/minimal/minimal.info | |
| deleted file mode 100644 | |
| index 1fd9bdd..0000000 | |
| --- profiles/minimal/minimal.info | |
| +++ /dev/null | |
| @@ -1,12 +0,0 @@ | |
| -name = Minimal | |
| -description = Start with only a few modules enabled. | |
| -version = VERSION | |
| -core = 7.x |
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
| core = 7.x | |
| api = 2 | |
| projects[ctools][subdir] = "contrib" | |
| projects[ctools][version] = "1.0" | |
| projects[custom_formatters][type] = "module" | |
| projects[custom_formatters][download][type] = "git" | |
| projects[custom_formatters][download][url] = "git://github.com/Decipher/custom_formatters.git" | |
| projects[custom_formatters][download][revision] = "756bdc1b48ce84939fd3ca136561c8df2270fbcb" |
NewerOlder