Skip to content

Commit

Permalink
Noch ein paar Bugs gefixt. Diese Version funktioniert nun auch auf de…
Browse files Browse the repository at this point in the history
…m Server.
  • Loading branch information
jk committed Dec 14, 2008
1 parent 618b9cf commit 680a569
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion getFollower.php
Expand Up @@ -5,7 +5,7 @@
define('USERDIR', DIR.'/'.strtolower(USER));

if (!file_exists(USERDIR)) {
mkdir(USERDIR, 0700);
mkdir(USERDIR, 0755);
}

$filename = USERDIR.'/'.strftime("%Y%m%d").'_'.strtolower(USER).".txt";
Expand Down
4 changes: 2 additions & 2 deletions index.php
Expand Up @@ -48,7 +48,7 @@
color: gray;
}
</style>
<?php if(!empty(GOOGLE_ANALYTICS_ID)): ?>
<?php if(GOOGLE_ANALYTICS_ID != ''): ?>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
Expand All @@ -62,7 +62,7 @@
</head>

<body>
<img src="<?= $user->profile_image_url; ?>" border="0" align="left" style="padding-right: 5px; padding-bottom: 10px;" width=73 height=73 />
<img src="<?= str_replace('_normal', '_bigger', $user->profile_image_url); ?>" border="0" align="left" style="padding-right: 5px; padding-bottom: 10px;" width=73 height=73 />
<h1><a href="http://twitter.com/<?= $user->screen_name; ?>">@<?= $user->screen_name; ?></a> / <?= $user->name; ?></h1>
<div id="location">Standort: <strong><?= $user->location; ?></strong></div>
<?php
Expand Down

0 comments on commit 680a569

Please sign in to comment.