From 5464cbce1a9843f46d47867e3d0ee9804c37a077 Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Sun, 11 Nov 2012 19:30:33 +0100 Subject: bug 1112: Changed the wot/4.php to entering a TTP request, the other file are needed for the process --- pages/wot/4.php | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 52 insertions(+), 4 deletions(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index 0da72da..0401d4f 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -26,7 +26,55 @@ Until a subsidiary policy under AP is written, it is against AP rules.

-

CAcert Inc.
-P.O. Box 4107
-Denistone East NSW 2112
-Australia

+ + + + +. + + + + + +http://wiki.cacert.org/TTP/TTPuser","http://wiki.cacert.org/TTP/TTPAL")."\n\n" ?> + + +// test for points <100 +if ($_SESSION['profile']['points']<100){ + // test for TTP assurances + if (get_number_of_ttpassurances($userid)<2){ +

+
+ + + + + //shall the input be replaced by a select, where should the country information be maintained + + + + + + + + +
+ + "> +
+
+ }else{ + /* As soon as the TPP TOPUP Programme is established this routine should be used +

+
+ + "> +
+ */ +

+ } + +} +Else{ +

+} -- cgit v1.2.1 From 0c3e0554aeb420a8cd586ed03afd3564fe6206de Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Sun, 11 Nov 2012 20:19:47 +0100 Subject: bug 1112: Changed some wording --- pages/wot/4.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index 0401d4f..0d0872e 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -65,7 +65,7 @@ if ($_SESSION['profile']['points']<100){ }else{ /* As soon as the TPP TOPUP Programme is established this routine should be used -

+

"> @@ -75,6 +75,6 @@ if ($_SESSION['profile']['points']<100){ } } -Else{ +else{

} -- cgit v1.2.1 From e61716693f1f07487921958fe90056c57aa23f0e Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Wed, 12 Dec 2012 01:19:16 +0100 Subject: bug 1112: fixed typos --- pages/wot/4.php | 67 ++++++++++++++++++++++++++++++--------------------------- 1 file changed, 35 insertions(+), 32 deletions(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index 0d0872e..5728f91 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -38,41 +38,44 @@ Until a subsidiary policy under AP is written, it is against AP rules.
http://wiki.cacert.org/TTP/TTPuser","http://wiki.cacert.org/TTP/TTPAL")."\n\n" ?> - +

- - - - - - //shall the input be replaced by a select, where should the country information be maintained - - - - - - - - -
- - "> -
- - }else{ + // test for TTP assurances + if (get_number_of_ttpassurances($userid)<2){?> +

+
+ + + + + + + + + + + + +
+ + "> +
+
+ /* As soon as the TPP TOPUP Programme is established this routine should be used -

-
- - "> -
- */ -

- } +

+
+ + "> +
+*/ +

+ } else{ -- cgit v1.2.1 From 7c8564a835416911895a8735caea84ac76e74f14 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sun, 16 Dec 2012 21:07:24 +0100 Subject: bug 1112: Fix the nesting of the PHP markers --- pages/wot/4.php | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index 85bc61f..a8877e9 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -72,18 +72,21 @@ if ($_SESSION['profile']['points']<100){ - - /* As soon as the TPP TOPUP Programme is established this routine should be used +

">
*/ +?>

- - -} -else{ -

+ +

+ Date: Wed, 19 Dec 2012 00:11:42 +0100 Subject: bug 1112: Fix typo in string literal --- pages/wot/4.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index a8877e9..b8240a5 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -49,7 +49,7 @@ if ($_SESSION['profile']['points']<100){ // test for TTP assurances if (get_number_of_ttpassurances($userid)<2){?> -

+

-- cgit v1.2.1 From c8f7c545c59113a57a23c9dac4341da972fbf02a Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Wed, 19 Dec 2012 00:28:57 +0100 Subject: bug 1112: Changed $userid to $Session ... --- pages/wot/4.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index b8240a5..2bde1e1 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -48,7 +48,7 @@ // test for points <100 if ($_SESSION['profile']['points']<100){ // test for TTP assurances - if (get_number_of_ttpassurances($userid)<2){?> + if (get_number_of_ttpassurances(intval($_SESSION['profile']['id']))<2){?>

-- cgit v1.2.1 From a76b65d7b33aac6a8086b8408c7da3e20cd273f2 Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Wed, 19 Dec 2012 01:01:44 +0100 Subject: bug 1112: included reference to includes/wot.inc.php in pages/wot/4.php and added 2nd filter on method in get_number_TTP --- pages/wot/4.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index 2bde1e1..c652731 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -14,7 +14,9 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -*/ ?> +*/ +include_once("../../includes/wot.inc.php"); +?>

-- cgit v1.2.1 From a192e6f52e0c6998a55010241254399357ed8489 Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Wed, 19 Dec 2012 01:10:15 +0100 Subject: bug 1112: changed include to ../ instead ../../ --- pages/wot/4.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index c652731..90ddaf2 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -15,7 +15,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -include_once("../../includes/wot.inc.php"); +include_once("../includes/wot.inc.php"); ?>

-- cgit v1.2.1 From 2c99fd8439f671d088161753190c4a69d350582c Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Wed, 19 Dec 2012 01:22:31 +0100 Subject: bug 1112: layout and typo fixes --- pages/wot/4.php | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index 90ddaf2..4847353 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -34,18 +34,6 @@ include_once("../includes/wot.inc.php");

https://wiki.cacert.org/TTP/TTPuser","https://wiki.cacert.org/TTP/TTPAL")?>

- - - - -. - - - - - -http://wiki.cacert.org/TTP/TTPuser","http://wiki.cacert.org/TTP/TTPAL")."\n\n" ?> - Date: Wed, 19 Dec 2012 10:21:05 +0100 Subject: bug 1112: small changes --- pages/wot/4.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pages/wot') diff --git a/pages/wot/4.php b/pages/wot/4.php index 4847353..5167d96 100644 --- a/pages/wot/4.php +++ b/pages/wot/4.php @@ -43,7 +43,7 @@ if ($_SESSION['profile']['points']<100){
- +
- + - + @@ -65,14 +65,14 @@ if ($_SESSION['profile']['points']<100){

+

- + "> - + */ ?> -

+

- + ">