Skip to content

Commit

Permalink
fix a minor issue on social_hub demo
Browse files Browse the repository at this point in the history
  • Loading branch information
hybridauth committed Apr 14, 2012
1 parent f420b8a commit a3d177e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/social_hub/login.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php
session_start();

// change the following paths if necessary
Expand Down
9 changes: 7 additions & 2 deletions examples/social_hub/profile.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@
<link rel="stylesheet" href="public/css.css" type="text/css">
</head>
<body>
<?php
if( $user_data ){
?>
<table width="90%" border="0" cellpadding="2" cellspacing="2">
<tr>
<td valign="top">
Expand Down Expand Up @@ -178,16 +181,18 @@
</td>
</tr>
</table>
</fieldset>
</fieldset>
</td>
<td valign="top" width="250" align="left">
<?php
include "includes/sidebar.php";
?>
</td>
</tr>
</table>
</table>
<?php
} // if( $user_data )

include "includes/debugger.php";
?>
</body>
Expand Down

0 comments on commit a3d177e

Please sign in to comment.