Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VMS-z
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christoph Zysik
VMS-z
Compare revisions
master to 066bc94c310112e6c970f9a7a90806a27aed9871
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ztk.me/VMS-z
Select target project
No results found
066bc94c310112e6c970f9a7a90806a27aed9871
Select Git revision
Branches
master
Swap
Target
isaack/VMS-SUEE_2.0
Select target project
isaack/VMS-SUEE_2.0
ztk.me/VMS-z
2 results
master
Select Git revision
Branches
master
Tags
0.0.1
0.0.2
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
pclick.php
+1
-3
1 addition, 3 deletions
pclick.php
pl.php
+2
-3
2 additions, 3 deletions
pl.php
topframe_forced.php
+1
-1
1 addition, 1 deletion
topframe_forced.php
topframe_text.php
+1
-1
1 addition, 1 deletion
topframe_text.php
with
5 additions
and
8 deletions
pclick.php
View file @
066bc94c
<?php
require
(
'lib/datenbank.inc.php'
);
require_once
(
'lib/functions.lib.php'
);
db_connect
();
$_GET
[
'uid'
]
=
(
int
)
$_GET
[
'uid'
];
$_GET
[
'tan'
]
=
addslashes
(
$_GET
[
'tan'
]);
...
...
@@ -18,5 +18,3 @@ echo '
<frame name="werbung" src="'
.
$mail
[
'ziel'
]
.
'" scrolling="auto" frameborder="0">
</frameset>
</html>'
;
db_close
();
This diff is collapsed.
Click to expand it.
pl.php
View file @
066bc94c
<?
<?php
require_once
(
'lib/datenbank.inc.php'
);
@
require_once
(
'lib/functions.lib.php'
);
@
db_connect
();
@
require_once
(
'lib/session.lib.php'
);
if
(
!
isset
(
$_GET
[
'art'
]))
$_GET
[
'art'
]
=
""
;
if
(
!
isset
(
$text
[
'tan'
]))
$text
[
'tan'
]
=
""
;
...
...
@@ -21,4 +21,3 @@ $text = mysqli_fetch_array(db_query("SELECT * FROM ".$db_prefix."_gebuchte_werbu
</frameset>
</body>
</html>
<?
db_close
();
?>
This diff is collapsed.
Click to expand it.
topframe_forced.php
View file @
066bc94c
...
...
@@ -52,7 +52,7 @@ if ($_GET['auszahlen'] == 'true' && $force_error != 'true' && $_GET['puk'] == md
db_query
(
"INSERT INTO "
.
$db_prefix
.
"_reloads (ip,uid,tan,bis) VALUES ('"
.
$ip
.
"',"
.
$_SESSION
[
'uid'
]
.
",'"
.
$forced
[
'tan'
]
.
"',"
.
$new_reload
.
")"
);
db_query
(
"UPDATE "
.
$db_prefix
.
"_gebuchte_werbung SET menge = menge - 1 WHERE tan='"
.
$_GET
[
'tan'
]
.
"'"
);
$_SESSION
[
'earlies_payout'
.
$_GET
[
'tan'
]]
=
''
;
$headmsg
=
$forced
[
'verdienst'
]
.
' '
.
$waehrung
.
' erhalten!'
;
$headmsg
=
$forced
[
'verdienst'
]
.
' '
.
$
pageconfig
[
'
waehrung
'
]
.
' erhalten!'
;
}
elseif
(
$_GET
[
'auszahlen'
]
==
'true'
&&
time
()
<
$_SESSION
[
'earlies_payout'
.
$_GET
[
'tan'
]])
{
$headmsg
=
'Wartezeit umgangen.'
;
}
elseif
(
$_GET
[
'auszahlen'
]
==
'true'
&&
$force_error
!=
'true'
)
{
...
...
This diff is collapsed.
Click to expand it.
topframe_text.php
View file @
066bc94c
...
...
@@ -47,7 +47,7 @@ $new_reload = time()+$text['reload'];
db_query
(
"INSERT INTO "
.
$db_prefix
.
"_reloads (ip,uid,tan,bis) VALUES ('"
.
$ip
.
"','"
.
$_SESSION
[
'uid'
]
.
"','"
.
$text
[
'tan'
]
.
"','"
.
$new_reload
.
"')"
);
db_query
(
"UPDATE "
.
$db_prefix
.
"_gebuchte_werbung SET menge = menge - 1 WHERE tan='"
.
$_GET
[
'tan'
]
.
"'"
);
db_query
(
"UPDATE "
.
$db_prefix
.
"_kontodaten SET textlinks = textlinks + 1, tlv = tlv + "
.
$text
[
'verdienst'
]
.
" WHERE uid = '"
.
$_SESSION
[
'uid'
]
.
"'"
);
$headmsg
=
$text
[
'verdienst'
]
.
' '
.
$waehrung
.
' erhalten!'
;
$headmsg
=
$text
[
'verdienst'
]
.
' '
.
$
pageconfig
[
'
waehrung
'
]
.
' erhalten!'
;
}
else
{
$headmsg
=
'Leider bist Du nicht eingeloggt!'
;
}
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
3
Next