Plugin Directory

Changeset 1596426


Ignore:
Timestamp:
02/15/2017 10:41:32 AM (9 years ago)
Author:
Errel
Message:

tagging version 1.4.4

Location:
carpoolevents
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • carpoolevents/tags/1.4.4/carpool.php

    r1593244 r1596426  
    44Plugin URI: https://www.carpool.events
    55Description: Add carpooling to your WordPress site. Fully integrated. No hassles. Click SETTINGS in the left WP menu-bar and select carpool.events to configure this plugin.
    6 Version: 1.4.3
     6Version: 1.4.4
    77Author: Errel
    88Author URI: https://www.carpool.events
     
    1616$var_carheader = "not_yet_set";
    1717$carpoolevents_server = 'https://www.easyapps.io';
    18 //$carpoolevents_server = 'http://192.168.0.90:8081';
     18// $carpoolevents_server = 'http://192.168.0.90:8081';
    1919$carpoolevents_appserver = 'https://app50.easyapps.io';
    20 //$carpoolevents_appserver = 'http://192.168.0.90:3000';
     20// $carpoolevents_appserver = 'http://192.168.0.90:3000';
    2121
    2222$characters = "abcdefghijklmnopqrstuvwxyz0123456789"; $randstring = '';
    23 for ($i = 0; $i < 20; $i++) { $randstring .= $characters[rand(0, strlen($characters))]; }
     23for ($i = 0; $i < 20; $i++) { $randstring .= $characters[rand(0, strlen($characters)-1)]; }
    2424$wpsessionsecuritycode = "wpses_" . $randstring;
    2525
     
    114114        $randstring = '';
    115115        for ($i = 0; $i < 4; $i++) {
    116             $randstring .= $k[rand(0, strlen($k))];
     116            $randstring .= $k[rand(0, strlen($k)-1)];
    117117        }
    118118
     
    364364      <td>
    365365        <?php if ( strlen(get_option("carpool_header"))>10 ) { ?>
    366         <?php
    367           $arr = explode(";", get_option("carpool_header"));
    368           foreach ($arr as $value) {
    369             if (strpos($value, 'covuserid') !== false) {
    370               $arr2 = explode("=", $value);
    371               $accountcode = str_replace("'","",$arr2[1]);
     366          <?php
     367            $arr = explode(";", get_option("carpool_header"));
     368            foreach ($arr as $value) {
     369              if (strpos($value, 'covuserid') !== false) {
     370                $arr2 = explode("=", $value);
     371                $accountcode = str_replace("'","",$arr2[1]);
     372              }
     373              if (strpos($value, 'covregion') !== false) {
     374                $arr2 = explode("=", $value);
     375                $covregion = str_replace("'","",$arr2[1]);
     376              }
    372377            }
    373             if (strpos($value, 'covregion') !== false) {
    374               $arr2 = explode("=", $value);
    375               $covregion = str_replace("'","",$arr2[1]);
    376             }
    377           }
    378         ?>
    379         <h3>HOW TO UPGRADE?</h3>
    380         <p style="font-size:105%">
    381         <ol>
    382 
    383           <li>Click at the IMPORT ACCOUNT button</li>
    384           <li>Enter your current active LOGIN NAME and PASSWORD (sent to you by e-mail).</li>
    385           <li>Enter a valid e-mail address and click at the BLUE IMPORT ACCOUNT button</li>
    386         </ol>
    387         If you do no want to upgrade but start with a fresh installation: hide the import fields by clicking the import account button again and accept the new ID, enter your mail address and click the CREATE ACCOUNT button.
    388         </p>
    389 
     378          ?>
     379          <h3>HOW TO UPGRADE?</h3>
     380          <p style="font-size:105%">
     381          <ol>
     382
     383            <li>Click at the IMPORT ACCOUNT button</li>
     384            <li>Enter your current active LOGIN NAME and PASSWORD (sent to you by e-mail).</li>
     385            <li>Enter a valid e-mail address and click at the BLUE IMPORT ACCOUNT button</li>
     386          </ol>
     387          If you do no want to upgrade but start with a fresh installation: hide the import fields by clicking the import account button again and accept the new ID, enter your mail address and click the CREATE ACCOUNT button.
     388          </p>
    390389        <?php } else { ?>
    391         <?php $covregion = "us" ?>
    392         <h3>Congratulations!</h3>
    393         <p style="font-size:105%">You just added an advanced carpooling system to your WordPress site.<br>
    394         It will not charge your WP server. Maintenance, monitoring and upgrades are taken care of by the makers.</p>
     390          <?php $covregion = "us" ?>
     391          <h3>Congratulations!</h3>
     392          <p style="font-size:105%">You just added an advanced carpooling system to your WordPress site.<br>
     393          It will not charge your WP server. Maintenance, monitoring and upgrades are taken care of by the makers.</p>
    395394        <?php } ?>
    396395
     
    570569        $randstring = '';
    571570        for ($i = 0; $i < 20; $i++) {
    572             $randstring .= $k[rand(0, strlen($k))];
     571            $randstring .= $k[rand(0, strlen($k)-1)];
    573572        }
    574573        $var_carpoolevents_id = "user_".$randstring;
  • carpoolevents/tags/1.4.4/readme.txt

    r1593244 r1596426  
    55Requires at least: 2.7.0
    66Tested up to: 4.7.2
    7 Stable tag: 1.4.3
     7Stable tag: 1.4.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9292== Changelog ==
    9393
    94 = 1.4.3 =
    95 * svn problem
     94= 1.4.4 =
     95* random strlen bugs fixed.
     96* Languages added.
     97* Improved Bootstrap 1/2/3/4 detection
    9698
    9799= 1.4.2 =
     
    106108* [Carpool] improved __new loader__.
    107109* [Carpool] improved __search/filter__.
    108 * [WP] follows WP rules for Shortcodes with paramaters.
     110* [WP] follows WP rules for Shortcodes with parameters.
    109111
    110112= 1.2 =
  • carpoolevents/trunk/carpool.php

    r1593244 r1596426  
    44Plugin URI: https://www.carpool.events
    55Description: Add carpooling to your WordPress site. Fully integrated. No hassles. Click SETTINGS in the left WP menu-bar and select carpool.events to configure this plugin.
    6 Version: 1.4.3
     6Version: 1.4.4
    77Author: Errel
    88Author URI: https://www.carpool.events
     
    1616$var_carheader = "not_yet_set";
    1717$carpoolevents_server = 'https://www.easyapps.io';
    18 //$carpoolevents_server = 'http://192.168.0.90:8081';
     18// $carpoolevents_server = 'http://192.168.0.90:8081';
    1919$carpoolevents_appserver = 'https://app50.easyapps.io';
    20 //$carpoolevents_appserver = 'http://192.168.0.90:3000';
     20// $carpoolevents_appserver = 'http://192.168.0.90:3000';
    2121
    2222$characters = "abcdefghijklmnopqrstuvwxyz0123456789"; $randstring = '';
    23 for ($i = 0; $i < 20; $i++) { $randstring .= $characters[rand(0, strlen($characters))]; }
     23for ($i = 0; $i < 20; $i++) { $randstring .= $characters[rand(0, strlen($characters)-1)]; }
    2424$wpsessionsecuritycode = "wpses_" . $randstring;
    2525
     
    114114        $randstring = '';
    115115        for ($i = 0; $i < 4; $i++) {
    116             $randstring .= $k[rand(0, strlen($k))];
     116            $randstring .= $k[rand(0, strlen($k)-1)];
    117117        }
    118118
     
    364364      <td>
    365365        <?php if ( strlen(get_option("carpool_header"))>10 ) { ?>
    366         <?php
    367           $arr = explode(";", get_option("carpool_header"));
    368           foreach ($arr as $value) {
    369             if (strpos($value, 'covuserid') !== false) {
    370               $arr2 = explode("=", $value);
    371               $accountcode = str_replace("'","",$arr2[1]);
     366          <?php
     367            $arr = explode(";", get_option("carpool_header"));
     368            foreach ($arr as $value) {
     369              if (strpos($value, 'covuserid') !== false) {
     370                $arr2 = explode("=", $value);
     371                $accountcode = str_replace("'","",$arr2[1]);
     372              }
     373              if (strpos($value, 'covregion') !== false) {
     374                $arr2 = explode("=", $value);
     375                $covregion = str_replace("'","",$arr2[1]);
     376              }
    372377            }
    373             if (strpos($value, 'covregion') !== false) {
    374               $arr2 = explode("=", $value);
    375               $covregion = str_replace("'","",$arr2[1]);
    376             }
    377           }
    378         ?>
    379         <h3>HOW TO UPGRADE?</h3>
    380         <p style="font-size:105%">
    381         <ol>
    382 
    383           <li>Click at the IMPORT ACCOUNT button</li>
    384           <li>Enter your current active LOGIN NAME and PASSWORD (sent to you by e-mail).</li>
    385           <li>Enter a valid e-mail address and click at the BLUE IMPORT ACCOUNT button</li>
    386         </ol>
    387         If you do no want to upgrade but start with a fresh installation: hide the import fields by clicking the import account button again and accept the new ID, enter your mail address and click the CREATE ACCOUNT button.
    388         </p>
    389 
     378          ?>
     379          <h3>HOW TO UPGRADE?</h3>
     380          <p style="font-size:105%">
     381          <ol>
     382
     383            <li>Click at the IMPORT ACCOUNT button</li>
     384            <li>Enter your current active LOGIN NAME and PASSWORD (sent to you by e-mail).</li>
     385            <li>Enter a valid e-mail address and click at the BLUE IMPORT ACCOUNT button</li>
     386          </ol>
     387          If you do no want to upgrade but start with a fresh installation: hide the import fields by clicking the import account button again and accept the new ID, enter your mail address and click the CREATE ACCOUNT button.
     388          </p>
    390389        <?php } else { ?>
    391         <?php $covregion = "us" ?>
    392         <h3>Congratulations!</h3>
    393         <p style="font-size:105%">You just added an advanced carpooling system to your WordPress site.<br>
    394         It will not charge your WP server. Maintenance, monitoring and upgrades are taken care of by the makers.</p>
     390          <?php $covregion = "us" ?>
     391          <h3>Congratulations!</h3>
     392          <p style="font-size:105%">You just added an advanced carpooling system to your WordPress site.<br>
     393          It will not charge your WP server. Maintenance, monitoring and upgrades are taken care of by the makers.</p>
    395394        <?php } ?>
    396395
     
    570569        $randstring = '';
    571570        for ($i = 0; $i < 20; $i++) {
    572             $randstring .= $k[rand(0, strlen($k))];
     571            $randstring .= $k[rand(0, strlen($k)-1)];
    573572        }
    574573        $var_carpoolevents_id = "user_".$randstring;
  • carpoolevents/trunk/readme.txt

    r1593244 r1596426  
    55Requires at least: 2.7.0
    66Tested up to: 4.7.2
    7 Stable tag: 1.4.3
     7Stable tag: 1.4.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9292== Changelog ==
    9393
    94 = 1.4.3 =
    95 * svn problem
     94= 1.4.4 =
     95* random strlen bugs fixed.
     96* Languages added.
     97* Improved Bootstrap 1/2/3/4 detection
    9698
    9799= 1.4.2 =
     
    106108* [Carpool] improved __new loader__.
    107109* [Carpool] improved __search/filter__.
    108 * [WP] follows WP rules for Shortcodes with paramaters.
     110* [WP] follows WP rules for Shortcodes with parameters.
    109111
    110112= 1.2 =
Note: See TracChangeset for help on using the changeset viewer.