mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-08 13:28:39 +00:00
Best Practice fixes.
This commit is contained in:
parent
0978f41ca2
commit
2e8e37fd29
|
|
@ -130,7 +130,8 @@ class C25 extends C128Abstract
|
||||||
$temp1 = explode('-', $temp[$posX]);
|
$temp1 = explode('-', $temp[$posX]);
|
||||||
$temp2 = explode('-', $temp[($posX + 1)]);
|
$temp2 = explode('-', $temp[($posX + 1)]);
|
||||||
|
|
||||||
for ($posY = 0; $posY < count($temp1); $posY++) {
|
$count = count($temp1);
|
||||||
|
for ($posY = 0; $posY < $count; $posY++) {
|
||||||
$codeString .= $temp1[$posY] . $temp2[$posY];
|
$codeString .= $temp1[$posY] . $temp2[$posY];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class Aztec
|
class QR
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user