maj.world

maj.world

Git

This blob has been accessed 516 times via Git panel.

  1. <?php
  2.  
  3. ini_set("session.use_trans_sid","0");
  4.  
  5. session_start();
  6.  
  7. header("Cache-control: private");
  8.  
  9. error_reporting(E_ERROR);
  10.  
  11. require("core.php");
  12.  
  13. if (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) {
  14.  
  15.         if (file_exists("$maj_data_directory/hits.txt")) {
  16.                 $maj_global_hits_count = file_get_contents("$maj_data_directory/hits.txt");
  17.         }
  18.         else {
  19.                 $maj_global_hits_count = "0";
  20.         }
  21.  
  22.         $maj_global_hits_count = $maj_global_hits_count + 1;
  23.  
  24.         $maj_global_hits_file = fopen("$maj_data_directory/hits.txt","w");
  25.         fwrite($maj_global_hits_file,$maj_global_hits_count);
  26.         fclose($maj_global_hits_file);
  27. }
  28.  
  29. if (@ereg("Google",$_SERVER['HTTP_USER_AGENT'])) {
  30.  
  31.         if (file_exists("$maj_data_directory/google.txt")) {
  32.                 $maj_google_hits_count = file_get_contents("$maj_data_directory/google.txt");
  33.         }
  34.         else {
  35.                 $maj_google_hits_count = "0";
  36.         }
  37.  
  38.         $maj_google_hits_count = $maj_google_hits_count + 1;
  39.  
  40.         $maj_google_hits_file = fopen("$maj_data_directory/google.txt","w");
  41.         fwrite($maj_google_hits_file,$maj_google_hits_count);
  42.         fclose($maj_google_hits_file);
  43. }
  44.  
  45. if (isset($_REQUEST['download']) and !empty($_REQUEST['download'])) {
  46.         ini_set("zlib.output_compression","off");
  47.         $maj_dl_file = str_replace("../","",@$_REQUEST['download']);
  48.         go_download($maj_dl_file);
  49.         die();
  50. }
  51.  
  52. function go_download($maj_dl_file) {
  53.  
  54.         $maj_req_entry = trim($_REQUEST['entry']);
  55.  
  56.         if (isset($_REQUEST['type']) and !empty($_REQUEST['type']) and ($_REQUEST['type'] == "filedrop")) {
  57.                 $maj_dl_path = "$maj_data_directory/items/$maj_req_entry/filedrop/files";
  58.                 $maj_count_path = "$maj_data_directory/items/$maj_req_entry/filedrop/count";
  59.                 $maj_count_file = "{$maj_dl_file}.txt";
  60.         }
  61.  
  62.         $maj_dl_file_size = filesize("$maj_dl_path/$maj_dl_file");
  63.  
  64.         header("Cache-Control: ");
  65.         header("Pragma: ");
  66.         header("Content-type: application/octet-stream");
  67.         header("Content-Disposition: attachment; filename=$maj_dl_file");
  68.         header("Content-length: $maj_dl_file_size");
  69.  
  70.         $maj_get_it = fopen("$maj_dl_path/$maj_dl_file","rb");
  71.  
  72.         while (!feof($maj_get_it)) {
  73.                 $maj_buf = fread($maj_get_it,4096);
  74.                 echo $maj_buf;
  75.                 $maj_bytes_sent += strlen($maj_buf);
  76.                 flush();
  77.         }
  78.  
  79.         fclose($maj_get_it);
  80.  
  81.         if ($maj_bytes_sent == $maj_dl_file_size) {
  82.  
  83.                 if (!file_exists($maj_count_path)) {
  84.                         mkdir($maj_count_path);
  85.                 }
  86.  
  87.                 if (file_exists("$maj_count_path/$maj_count_file")) {
  88.                         $maj_count_unique_downloads = file_get_contents("$maj_count_path/$maj_count_file");
  89.                 }
  90.                 else {
  91.                         $maj_count_unique_downloads = "0";
  92.                 }
  93.  
  94.                 $maj_count_unique_downloads = $maj_count_unique_downloads + 1;
  95.  
  96.                 $maj_fp_unique_downloads = fopen("$maj_count_path/$maj_count_file","w");
  97.                 fwrite($maj_fp_unique_downloads,$maj_count_unique_downloads);
  98.                 fclose($maj_fp_unique_downloads);
  99.         }
  100. }
  101.  
  102. if (isset($maj_req_entry) and !empty($maj_req_entry) and isset($_REQUEST['comment']) and !empty($_REQUEST['comment']) and isset($_REQUEST['key']) and !empty($_REQUEST['key']) and isset($_REQUEST['action']) and !empty($_REQUEST['action'])) {
  103.  
  104.                 $maj_comment_dir = "$maj_data_directory/items/$maj_req_entry/comments/pending/{$_REQUEST['comment']}";
  105.  
  106.                 $maj_login_key = file_get_contents("$maj_comment_dir/key.txt");
  107.  
  108.                 if ($_REQUEST['key'] == $maj_login_key) {
  109.  
  110.                         if ($_REQUEST['action'] == "approve") {
  111.  
  112.                                 $maj_live_dir = "$maj_data_directory/items/$maj_req_entry/comments/live/{$_REQUEST['comment']}";
  113.  
  114.                                 if (!file_exists("$maj_data_directory/items/$maj_req_entry/comments/live")) {
  115.                                         mkdir("$maj_data_directory/items/$maj_req_entry/comments/live");
  116.                                 }
  117.  
  118.                                 if (!file_exists("$maj_data_directory/items/$maj_req_entry/comments/live/{$_REQUEST['comment']}")) {
  119.                                         mkdir("$maj_data_directory/items/$maj_req_entry/comments/live/{$_REQUEST['comment']}");
  120.                                 }
  121.  
  122.                                 rename($maj_comment_dir,$maj_live_dir);
  123.  
  124.                                 unlink("$maj_live_dir/key.txt");
  125.  
  126.                                 // clean-up old latest comments dir (start)
  127.  
  128.                                 if (file_exists("$maj_data_directory/comments/latest")) {
  129.                                         rmdirr("$maj_data_directory/comments/latest");
  130.                                 }
  131.  
  132.                                 // clean-up old latest comments dir (end)
  133.  
  134.                                 if (file_exists("$maj_data_directory/members/active") and !file_exists("$maj_data_directory/xucomment.txt")) {
  135.  
  136.                                         if (!file_exists("$maj_data_directory/comments/unread")) {
  137.                                                 mkdir("$maj_data_directory/comments/unread");
  138.                                         }
  139.  
  140.                                         if (!file_exists("$maj_data_directory/comments/unread/$maj_req_entry")) {
  141.                                                 mkdir("$maj_data_directory/comments/unread/$maj_req_entry");
  142.                                         }
  143.                        
  144.                                         if ($maj_dh_unread_active_members = opendir("$maj_data_directory/members/active")) {
  145.                        
  146.                                                 while (($maj_unread_active_member = readdir($maj_dh_unread_active_members)) !== false) {
  147.                        
  148.                                                         if ($maj_unread_active_member != "." && $maj_unread_active_member != "..") {
  149.  
  150.                                                                 if ((!file_exists("$maj_data_directory/members/active/$maj_unread_active_member/bb-vacation.txt") and !file_exists("$maj_data_directory/items/$maj_req_entry/members")) or (!file_exists("$maj_data_directory/members/active/$maj_unread_active_member/bb-vacation.txt") and file_exists("$maj_data_directory/items/$maj_req_entry/members") and file_exists("$maj_data_directory/items/$maj_req_entry/members/$maj_unread_active_member"))) {
  151.                                                                        
  152.                                                                         if (!file_exists("$maj_data_directory/members/active/$maj_unread_active_member/comments")) {
  153.                                                                                 mkdir("$maj_data_directory/members/active/$maj_unread_active_member/comments");
  154.                                                                         }
  155.        
  156.                                                                         if (!file_exists("$maj_data_directory/members/active/$maj_unread_active_member/comments/unread")) {
  157.                                                                                 mkdir("$maj_data_directory/members/active/$maj_unread_active_member/comments/unread");
  158.                                                                         }
  159.        
  160.                                                                         if (!file_exists("$maj_data_directory/members/active/$maj_unread_active_member/comments/unread/$maj_req_entry")) {
  161.                                                                                 mkdir("$maj_data_directory/members/active/$maj_unread_active_member/comments/unread/$maj_req_entry");
  162.                                                                         }
  163.                                                                 }
  164.                                                         }
  165.                                                 }
  166.                                                 closedir($maj_dh_unread_active_members);
  167.                                         }
  168.                                 }
  169.  
  170.                                 $maj_private_categories = "0";
  171.  
  172.                                 if (file_exists("$maj_data_directory/items/$maj_req_entry/categories")) {
  173.                        
  174.                                         if ($maj_dh_entry_categories = opendir("$maj_data_directory/items/$maj_req_entry/categories")) {
  175.                        
  176.                                                 while (($maj_entry_category = readdir($maj_dh_entry_categories)) !== false) {
  177.                        
  178.                                                         if ($maj_entry_category != "." && $maj_entry_category != "..") {
  179.                        
  180.                                                                 if (file_exists("$maj_data_directory/categories/$maj_entry_category/private.txt")) {
  181.                                                                         $maj_private_categories = $maj_private_categories + 1;
  182.                                                                 }
  183.                                                         }
  184.                                                 }
  185.                                                 closedir($maj_dh_entry_categories);
  186.                                         }
  187.                                 }
  188.  
  189.                                 if (file_exists("$maj_data_directory/members/active") and file_exists("$maj_data_directory/ml.txt") and file_exists("$maj_data_directory/email.txt") and !file_exists("$maj_data_directory/items/$maj_req_entry/private.txt") and ($maj_private_categories == "0")) {
  190.  
  191.                                         if (file_exists("$maj_data_directory/ml-reply2.txt")) {
  192.                                                 $maj_ml_reply2 = file_get_contents("$maj_data_directory/ml-reply2.txt");
  193.                                         }
  194.  
  195.                                         if (file_exists("$maj_data_directory/ml-from.txt")) {
  196.                                                 $maj_ml_from = $maj_ml_reply2;
  197.                                         }
  198.                                         else {
  199.                                                 $maj_ml_from = file_get_contents("$maj_live_dir/email.txt");
  200.                                         }
  201.  
  202.                                         $maj_ml_from = str_replace(" at ","@",$maj_ml_from);
  203.  
  204.                                         $maj_ml_from_firstname = file_get_contents("$maj_live_dir/firstname.txt");
  205.                                         $maj_ml_from_lastname = file_get_contents("$maj_live_dir/lastname.txt");
  206.  
  207.                                         $maj_ml_from = '"' . "$maj_ml_from_firstname $maj_ml_from_lastname" . '" <' . $maj_ml_from . '>';
  208.  
  209.                                         $maj_ml_subject = file_get_contents("$maj_data_directory/items/$maj_req_entry/title.txt");
  210.  
  211.                                         if (file_exists("$maj_data_directory/ml-prepend.txt")) {
  212.                                                 $maj_ml_prepend = file_get_contents("$maj_data_directory/ml-prepend.txt");
  213.                                                 $maj_ml_subject = str_replace($maj_ml_prepend,"",$maj_ml_subject);
  214.                                                 $maj_ml_subject = $maj_ml_prepend . " " . $maj_ml_subject;
  215.                                         }
  216.  
  217.                                         $maj_ml_subject = str_replace("Re:","",$maj_ml_subject);
  218.                                         $maj_ml_subject = "Re: " . $maj_ml_subject;
  219.  
  220.                                         $maj_ml_mailer = 'MAJ/2.0 (PHP/' . phpversion() . ')';
  221.  
  222.                                         $maj_ml_body = file_get_contents("$maj_live_dir/comment.txt");
  223.                                         $maj_ml_body = str_replace('<br />',"\n",$maj_ml_body);
  224.                                         $maj_ml_body = str_replace('<img src="images/smileys/crying.png" border="0">',':((',$maj_ml_body);
  225.                                         $maj_ml_body = str_replace('<img src="images/smileys/frown.png" border="0">',':(',$maj_ml_body);
  226.                                         $maj_ml_body = str_replace('<img src="images/smileys/indifferent.png" border="0">',':|',$maj_ml_body);
  227.                                         $maj_ml_body = str_replace('<img src="images/smileys/laughing.png" border="0">',':D',$maj_ml_body);
  228.                                         $maj_ml_body = str_replace('<img src="images/smileys/lick.png" border="0">',':P',$maj_ml_body);
  229.                                         $maj_ml_body = str_replace('<img src="images/smileys/ohno.png" border="0">',':O',$maj_ml_body);
  230.                                         $maj_ml_body = str_replace('<img src="images/smileys/smile.png" border="0">',':)',$maj_ml_body);
  231.                                         $maj_ml_body = str_replace('<img src="images/smileys/surprised.png" border="0">','=)',$maj_ml_body);
  232.                                         $maj_ml_body = str_replace('<img src="images/smileys/undecided.png" border="0">',':\\',$maj_ml_body);
  233.                                         $maj_ml_body = str_replace('<img src="images/smileys/wink.png" border="0">',';)',$maj_ml_body);
  234.                                         $maj_ml_body = str_replace('&amp;','&',$maj_ml_body);
  235.                                         $maj_ml_body = str_replace('&lt;','<',$maj_ml_body);
  236.                                         $maj_ml_body = str_replace('&gt;','>',$maj_ml_body);
  237.                                         $maj_ml_body = str_replace('&reg;','(R)',$maj_ml_body);
  238.  
  239.                                         if (file_exists("$maj_data_directory/pf.txt") and file_exists("$maj_data_directory/pf-badwords.txt")) {
  240.  
  241.                                                 $maj_badwords = file_get_contents("$maj_data_directory/pf-badwords.txt");
  242.  
  243.                                                 if (file_exists("$maj_data_directory/pf-censor.txt")) {
  244.                                                         $maj_censor = file_get_contents("$maj_data_directory/pf-censor.txt");
  245.                                                 }
  246.                                                 else {
  247.                                                         $maj_censor = "[expletive]";
  248.                                                 }
  249.  
  250.                                                 $maj_ml_body = preg_replace("/\b($maj_badwords)\b/i",$maj_censor,$maj_ml_body);
  251.                                         }
  252.  
  253.                                         if (file_exists("$maj_data_directory/ml-header.txt")) {
  254.                                                 $maj_ml_header = file_get_contents("$maj_data_directory/ml-header.txt");
  255.                                                 $maj_ml_body = $maj_ml_header . "\n\n" . $maj_ml_body;
  256.                                         }
  257.  
  258.                                         $maj_ml_url = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/";
  259.                                         $maj_ml_url = str_replace('//','/',$maj_ml_url);
  260.                                         $maj_ml_url = "http://$maj_ml_url/index.php?entry=$maj_req_entry&show=comments";
  261.  
  262.                                         $maj_ml_body = $maj_ml_body . "\n\nPlease visit the following URL for the full thread:\n\n" . $maj_ml_url;
  263.  
  264.                                         if (file_exists("$maj_data_directory/items/$maj_req_entry/member.txt")) {
  265.                                                 $maj_ml_body = $maj_ml_body . "\n\nYou need to login first to view the entry or to add a comment.";
  266.                                         }
  267.  
  268.                                         if (file_exists("$maj_data_directory/ml-footer.txt")) {
  269.                                                 $maj_ml_footer = file_get_contents("$maj_data_directory/ml-footer.txt");
  270.                                                 $maj_ml_body = $maj_ml_body . "\n\n" . $maj_ml_footer;
  271.                                         }
  272.  
  273.  
  274.                                         if ($maj_dh_ml_member = opendir("$maj_data_directory/members/active")) {
  275.                                                 while (($maj_ml_member = readdir($maj_dh_ml_member)) !== false) {
  276.                                                         if ($maj_ml_member != "." && $maj_ml_member != "..") {
  277.  
  278.                                                                 if (file_exists("$maj_data_directory/members/active/$maj_ml_member/bb-noml.txt")) {
  279.                                                                         continue;
  280.                                                                 }
  281.  
  282.                                                                 if (file_exists("$maj_data_directory/members/active/$maj_ml_member/bb-vacation.txt")) {
  283.                                                                         continue;
  284.                                                                 }
  285.  
  286.                                                                 $maj_ml_to_firstname = file_get_contents("$maj_data_directory/members/active/$maj_ml_member/firstname.txt");
  287.                                                                 $maj_ml_to_lastname = file_get_contents("$maj_data_directory/members/active/$maj_ml_member/lastname.txt");
  288.                                                                 $maj_ml_to = file_get_contents("$maj_data_directory/members/active/$maj_ml_member/email.txt");
  289.                                                                 $maj_ml_to = '"' . "$maj_ml_to_firstname $maj_ml_to_lastname" . '" <'. $maj_ml_to . '>';
  290.  
  291.                                                                 if (file_exists("$maj_data_directory/ml-reply2.txt")) {
  292.                                                                         mail($maj_ml_to,$maj_ml_subject,$maj_ml_body,
  293.                                                                         "From: $maj_ml_from\r\n" .
  294.                                                                         "Reply-To: $maj_ml_reply2\r\n" .
  295.                                                                         "References: $maj_req_entry\r\n" .
  296.                                                                         "X-Mailer: $maj_ml_mailer");
  297.                                                                 }
  298.                                                                 else {
  299.                                                                         mail($maj_ml_to,$maj_ml_subject,$maj_ml_body,
  300.                                                                         "From: $maj_ml_from\r\n" .
  301.                                                                         "References: $maj_req_entry\r\n" .
  302.                                                                         "X-Mailer: $maj_ml_mailer");
  303.                                                                 }
  304.                                                         }
  305.                                                 }
  306.                                                 closedir($maj_dh_ml_member);
  307.                                         }
  308.                                 }
  309.  
  310.                         }
  311.  
  312.                         if ($_REQUEST['action'] == "delete") {
  313.                                 rmdirr($maj_comment_dir);
  314.                         }
  315.  
  316.                         $maj_comment_count_value = file_get_contents("$maj_data_directory/comments/pending/$maj_req_entry/count.txt");
  317.  
  318.                         if ($maj_comment_count_value <= 1) {
  319.                                 rmdirr("$maj_data_directory/comments/pending/$maj_req_entry");
  320.                         }
  321.                         else {
  322.                                 $maj_comment_count_value = file_get_contents("$maj_data_directory/comments/pending/$maj_req_entry/count.txt");
  323.  
  324.                                 $maj_comment_count_value = $maj_comment_count_value - 1;
  325.  
  326.                                 $maj_fp_comment_count_txt = fopen("$maj_data_directory/comments/pending/$maj_req_entry/count.txt","w");
  327.                                 fwrite($maj_fp_comment_count_txt,$maj_comment_count_value);
  328.                                 fclose($maj_fp_comment_count_txt);
  329.                         }
  330.  
  331.                         header("Location: index.php?entry=$maj_req_entry&show=comments");
  332.                 }
  333. }
  334.  
  335. if (isset($maj_req_entry) and !empty($maj_req_entry)) {
  336.  
  337.         if (file_exists("$maj_data_directory/items/$maj_req_entry")) {
  338.  
  339.                 $maj_title = file_get_contents("$maj_data_directory/items/$maj_req_entry/title.txt");
  340.  
  341.                 echo "<title>$maj_title</title>\r\n";
  342.  
  343.                 if ((!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  344.  
  345.                         if (file_exists("$maj_data_directory/items/$maj_req_entry/views.txt")) {
  346.                                 $maj_count_views = file_get_contents("$maj_data_directory/items/$maj_req_entry/views.txt");
  347.                         }
  348.                         else {
  349.                                 $maj_count_views = "0";
  350.                         }
  351.  
  352.                         $maj_count_views = $maj_count_views + 1;
  353.  
  354.                         $maj_fp_views = fopen("$maj_data_directory/items/$maj_req_entry/views.txt","w");
  355.                         fwrite($maj_fp_views,$maj_count_views);
  356.                         fclose($maj_fp_views);
  357.                 }
  358.                
  359.                 if (isset($maj_req_show) and !empty($maj_req_show) and isset($_POST['captcha_put']) and !empty($_REQUEST['captcha_get']) and isset($_POST['firstname']) and !empty($_POST['firstname']) and isset($_POST['lastname']) and !empty($_POST['lastname']) and isset($_POST['email']) and !empty($_POST['email']) and isset($_POST['new_comment']) and !empty($_POST['new_comment']) and isset($_POST['captcha_put']) and !empty($_POST['captcha_put']) and ($_REQUEST['captcha_get'] == sha1($_POST['captcha_put'])) and (ereg("@",$_POST['email'])) and (ereg("\.",$_POST['email']))) {
  360.                
  361.                         if (!file_exists("$maj_data_directory/items/$maj_req_entry/comments")) {
  362.                                 mkdir("$maj_data_directory/items/$maj_req_entry/comments");
  363.                         }
  364.  
  365.                         if (!file_exists("$maj_data_directory/items/$maj_req_entry/comments/pending")) {
  366.                                 mkdir("$maj_data_directory/items/$maj_req_entry/comments/pending");
  367.                         }
  368.  
  369.                         if (!file_exists("$maj_data_directory/items/$maj_req_entry/comments/live")) {
  370.                                 mkdir("$maj_data_directory/items/$maj_req_entry/comments/live");
  371.                         }
  372.  
  373.                         $maj_timestamp = date("l, M j, Y, g:i A",time() + $maj_offset);
  374.        
  375.                         $maj_comment_entry_dir = date("YmdHis",time() + $maj_offset);
  376.        
  377.                         mkdir("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir");
  378.        
  379.                         $maj_body_content = ucfirst($_POST['new_comment']);
  380.                         $maj_body_content = htmlentities($maj_body_content,ENT_NOQUOTES);
  381.                         $maj_body_content = str_replace("\n",'<br />',$maj_body_content);
  382.                         $maj_body_content = trim($maj_body_content);
  383.                         $maj_body_content = str_replace(':((','<img src="images/smileys/crying.png" border="0">',$maj_body_content);
  384.                         $maj_body_content = str_replace(':(','<img src="images/smileys/frown.png" border="0">',$maj_body_content);
  385.                         $maj_body_content = str_replace(':|','<img src="images/smileys/indifferent.png" border="0">',$maj_body_content);
  386.                         $maj_body_content = str_replace(':D','<img src="images/smileys/laughing.png" border="0">',$maj_body_content);
  387.                         $maj_body_content = str_replace(':P','<img src="images/smileys/lick.png" border="0">',$maj_body_content);
  388.                         $maj_body_content = str_replace(':O','<img src="images/smileys/ohno.png" border="0">',$maj_body_content);
  389.                         $maj_body_content = str_replace(':)','<img src="images/smileys/smile.png" border="0">',$maj_body_content);
  390.                         $maj_body_content = str_replace('=)','<img src="images/smileys/surprised.png" border="0">',$maj_body_content);
  391.                         $maj_body_content = str_replace(':\\','<img src="images/smileys/undecided.png" border="0">',$maj_body_content);
  392.                         $maj_body_content = str_replace(';)','<img src="images/smileys/wink.png" border="0">',$maj_body_content);
  393.  
  394.                         $maj_fp_body_txt = fopen("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir/comment.txt","w");
  395.                         fwrite($maj_fp_body_txt,$maj_body_content);
  396.                         fclose($maj_fp_body_txt);
  397.  
  398.                         $maj_fp_timestamp_txt = fopen("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir/timestamp.txt","w");
  399.                         fwrite($maj_fp_timestamp_txt,$maj_timestamp);
  400.                         fclose($maj_fp_timestamp_txt);
  401.  
  402.                         $maj_fp_firstname_txt = fopen("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir/firstname.txt","w");
  403.                         $maj_firstname = htmlentities($_POST['firstname'],ENT_NOQUOTES);
  404.                         $maj_firstname = trim($maj_firstname);
  405.                        
  406.                         if (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) {
  407.                                 $maj_firstname = strtolower($maj_firstname);
  408.                         }
  409.  
  410.                         $maj_firstname = ucwords($maj_firstname);
  411.                         fwrite($maj_fp_firstname_txt,$maj_firstname);
  412.                         fclose($maj_fp_firstname_txt);
  413.  
  414.                         $maj_fp_lastname_txt = fopen("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir/lastname.txt","w");
  415.                         $maj_lastname = htmlentities($_POST['lastname'],ENT_NOQUOTES);
  416.                         $maj_lastname = trim($maj_lastname);
  417.  
  418.                         if (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) {
  419.                                 $maj_lastname = strtolower($maj_lastname);
  420.                         }
  421.                        
  422.                         $maj_lastname = ucwords($maj_lastname);
  423.                         fwrite($maj_fp_lastname_txt,$maj_lastname);
  424.                         fclose($maj_fp_lastname_txt);
  425.  
  426.                         $maj_fp_email_txt = fopen("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir/email.txt","w");
  427.                         $maj_email = strtolower($_POST['email']);
  428.                         $maj_email = trim($maj_email);
  429.                         $maj_email = htmlentities($maj_email,ENT_NOQUOTES);
  430.                         fwrite($maj_fp_email_txt,$maj_email);
  431.                         fclose($maj_fp_email_txt);
  432.  
  433.                         if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username) and !file_exists("$maj_data_directory/email.txt")) {
  434.                                 $maj_fp_email_root = fopen("$maj_data_directory/email.txt","w");
  435.                                 $maj_email_root = strtolower($_POST['email']);
  436.                                 $maj_email_root = trim($maj_email_root);
  437.                                 $maj_email_root = htmlentities($maj_email_root,ENT_NOQUOTES);
  438.                                 fwrite($maj_fp_email_root,$maj_email_root);
  439.                                 fclose($maj_fp_email_root);
  440.                         }
  441.  
  442.                         if (isset($_POST['url']) and !empty($_POST['url']) and (ereg("\.",$_POST['url']))) {
  443.                                 $maj_fp_url_txt = fopen("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir/url.txt","w");
  444.                                 $maj_url = str_replace("http://","",$_POST['url']);
  445.                                 $maj_url = strtolower($maj_url);
  446.                                 $maj_url = trim($maj_url);
  447.                                 $maj_url = "http://" . $maj_url;
  448.                                 $maj_url = htmlentities($maj_url,ENT_NOQUOTES);
  449.                                 fwrite($maj_fp_url_txt,$maj_url);
  450.                                 fclose($maj_fp_url_txt);
  451.                         }
  452.  
  453.                         if (isset($_POST['cauthor']) and !empty($_POST['cauthor'])) {
  454.                                 $maj_fp_cauthor_txt = fopen("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir/author.txt","w");
  455.                                 fwrite($maj_fp_cauthor_txt,$_POST['cauthor']);
  456.                                 fclose($maj_fp_cauthor_txt);
  457.                         }
  458.  
  459.                         $maj_key_rand = str_rand(14);
  460.                         $maj_fp_key_txt = fopen("$maj_data_directory/items/$maj_req_entry/comments/pending/$maj_comment_entry_dir/key.txt","w");
  461.                         fwrite($maj_fp_key_txt,$maj_key_rand);
  462.                         fclose($maj_fp_key_txt);
  463.  
  464.                         $maj_comment_quote = ucfirst($_POST['new_comment']);
  465.        
  466.                         $maj_sig_author = file_get_contents("$maj_data_directory/author.txt");
  467.        
  468.                         $maj_sig_url = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/";
  469.                         $maj_sig_url = str_replace('//','/',$maj_sig_url);
  470.                         $maj_sig_url = "http://" . $maj_sig_url;
  471.  
  472.                         $maj_email_to = strtolower($_POST['email']);
  473.                         $maj_email_to = '"' . "$maj_firstname $maj_lastname" . '" <' . $maj_email_to . '>';
  474.  
  475.                         if (file_exists("$maj_data_directory/email.txt")) {
  476.                                 $maj_from_email_author = file_get_contents("$maj_data_directory/author.txt");
  477.                                 $maj_from_email = file_get_contents("$maj_data_directory/email.txt");
  478.                                 $maj_from_email = '"' . $maj_from_email_author . '" <' . $maj_from_email . '>';
  479.                         }
  480.  
  481.                         $maj_mailer = 'MAJ/2.0 (PHP/' . phpversion() . ')';
  482.  
  483.                         $maj_commented_entry_title = file_get_contents("$maj_data_directory/items/$maj_req_entry/title.txt");
  484.  
  485.                         if (!file_exists("$maj_data_directory/nak.txt") and file_exists("$maj_data_directory/email.txt")) {
  486.  
  487.                                 $maj_comment_thanks = "Hi $maj_firstname,\n\nThanks for submitting the following comment last $maj_timestamp:\n\n\"$maj_comment_quote\"\n\nIt will be e-mailed to me first for approval. Please visit the following URL to see if it has been posted:\n\n{$maj_sig_url}index.php?entry=$maj_req_entry&show=comments\n\nThanks again! =)\n\n--\n$maj_sig_author\n$maj_sig_url\n";
  488.                                 $maj_comment_thanks = wordwrap($maj_comment_thanks);
  489.  
  490.                                 mail($maj_email_to,"Thanks for sharing your thoughts!",$maj_comment_thanks,
  491.                                         "From: $maj_from_email\r\n" .
  492.                                         "Reply-To: $maj_from_email\r\n" .
  493.                                         "X-Mailer: $maj_mailer");
  494.                         }
  495.  
  496.                         if (file_exists("$maj_data_directory/email.txt") and !file_exists("$maj_data_directory/xscreen.txt")) {
  497.  
  498.                                 $maj_comment_notice = "The following comment was submitted by $maj_email_to last $maj_timestamp for the entry \"$maj_commented_entry_title\":\n\n\"$maj_comment_quote\"\n\nVisit the link below to approve and post this pending comment:\n\n{$maj_sig_url}index.php?entry=$maj_req_entry&comment={$maj_comment_entry_dir}&key={$maj_key_rand}&action=approve\n\nVisit the link below to disapprove and delete this pending comment:\n\n{$maj_sig_url}index.php?entry=$maj_req_entry&comment={$maj_comment_entry_dir}&key={$maj_key_rand}&action=delete\n\nYou can also approve or disapprove pending comments at a later time by logging on to your blog.";
  499.                                 $maj_comment_notice = wordwrap($maj_comment_notice);
  500.        
  501.                                 mail($maj_from_email,"Pending Comment",$maj_comment_notice,
  502.                                         "From: $maj_from_email\r\n" .
  503.                                         "Reply-To: $maj_from_email\r\n" .
  504.                                         "X-Mailer: $maj_mailer");
  505.                         }
  506.  
  507.                         if (!file_exists("$maj_data_directory/comments")) {
  508.                                 mkdir("$maj_data_directory/comments");
  509.                         }
  510.  
  511.                         if (!file_exists("$maj_data_directory/comments/pending")) {
  512.                                 mkdir("$maj_data_directory/comments/pending");
  513.                         }
  514.  
  515.                         $maj_pending_comment_flag = $maj_req_entry;
  516.        
  517.                         if (!file_exists("$maj_data_directory/comments/pending/$maj_pending_comment_flag")) {
  518.                                 mkdir("$maj_data_directory/comments/pending/$maj_pending_comment_flag");
  519.                         }
  520.  
  521.                         if (file_exists("$maj_data_directory/comments/pending/$maj_pending_comment_flag/count.txt")) {
  522.                                 $maj_comment_count_value = file_get_contents("$maj_data_directory/comments/pending/$maj_pending_comment_flag/count.txt");
  523.                         }
  524.                         else {
  525.                                 $maj_comment_count_value = "0";
  526.                         }
  527.  
  528.                         $maj_comment_count_value = $maj_comment_count_value + 1;
  529.  
  530.                         $maj_fp_comment_count_txt = fopen("$maj_data_directory/comments/pending/$maj_pending_comment_flag/count.txt","w");
  531.                         fwrite($maj_fp_comment_count_txt,$maj_comment_count_value);
  532.                         fclose($maj_fp_comment_count_txt);
  533.                 }
  534.         }
  535. }
  536. else {
  537.         echo "<title>$maj_default_title</title>\r\n";
  538. }
  539.  
  540. if (file_exists("$maj_data_directory/comments/pending") and (file_exists("$maj_data_directory/xscreen.txt") or (isset($maj_logged_in_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username/xscreen.txt")))) {
  541.  
  542.         if ($maj_dh_xscreen_comments = opendir("$maj_data_directory/comments/pending")) {
  543.  
  544.                 while (($maj_xscreen_comment = readdir($maj_dh_xscreen_comments)) !== false) {
  545.  
  546.                         if ($maj_xscreen_comment != "." && $maj_xscreen_comment != "..") {
  547.                                 $maj_xscreen_comments[] = $maj_xscreen_comment;
  548.                         }
  549.                 }
  550.                 closedir($maj_dh_xscreen_comments);
  551.         }
  552.  
  553.         rsort($maj_xscreen_comments);
  554.         reset($maj_xscreen_comments);
  555.  
  556.         if (count($maj_xscreen_comments) > 0) {
  557.  
  558.                 foreach ($maj_xscreen_comments as $maj_xscreen_dir) {
  559.  
  560.                         if ($maj_dh_xscreen_pending = opendir("$maj_data_directory/items/$maj_xscreen_dir/comments/pending")) {
  561.  
  562.                                 while (($maj_xscreen_entry = readdir($maj_dh_xscreen_pending)) !== false) {
  563.                                        
  564.                                         if ($maj_xscreen_entry != "." && $maj_xscreen_entry != "..") {
  565.  
  566.                                                 if (isset($maj_logged_in_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username/xscreen.txt")) {
  567.  
  568.                                                         if ($maj_logged_in_username == file_get_contents("$maj_data_directory/items/$maj_xscreen_dir/comments/pending/$maj_xscreen_entry/author.txt")) {
  569.        
  570.                                                                 $maj_xscreen_key = file_get_contents("$maj_data_directory/items/$maj_xscreen_dir/comments/pending/$maj_xscreen_entry/key.txt");
  571.        
  572.                                                                 header("Location: index.php?entry={$maj_xscreen_dir}&comment={$maj_xscreen_entry}&key={$maj_xscreen_key}&action=approve");
  573.                                                         }
  574.                                                 }
  575.                                                 else {
  576.                                                         $maj_xscreen_key = file_get_contents("$maj_data_directory/items/$maj_xscreen_dir/comments/pending/$maj_xscreen_entry/key.txt");
  577.  
  578.                                                         header("Location: index.php?entry={$maj_xscreen_dir}&comment={$maj_xscreen_entry}&key={$maj_xscreen_key}&action=approve");
  579.                                                 }
  580.                                         }
  581.                                 }
  582.                         }
  583.                 }
  584.  
  585.         }
  586. }
  587.  
  588. if (isset($maj_req_entry) and !empty($maj_req_entry) and file_exists("$maj_data_directory/items/$maj_req_entry")) {
  589.  
  590.         $maj_private_categories = "0";
  591.  
  592.         if (file_exists("$maj_data_directory/items/$maj_req_entry/categories")) {
  593.                        
  594.                 if ($maj_dh_entry_categories = opendir("$maj_data_directory/items/$maj_req_entry/categories")) {
  595.                        
  596.                         while (($maj_entry_category = readdir($maj_dh_entry_categories)) !== false) {
  597.                        
  598.                                 if ($maj_entry_category != "." && $maj_entry_category != "..") {
  599.                        
  600.                                         if (file_exists("$maj_data_directory/categories/$maj_entry_category/private.txt")) {
  601.                                                 $maj_private_categories = $maj_private_categories + 1;
  602.                                         }
  603.                                 }
  604.                         }
  605.                         closedir($maj_dh_entry_categories);
  606.                 }
  607.         }
  608.  
  609.  
  610.         if ($maj_private_categories == "0") {
  611.  
  612.                 if (!file_exists("$maj_data_directory/items/$maj_req_entry/passwd.txt")) {
  613.  
  614.                         if (!file_exists("$maj_data_directory/items/$maj_req_entry/private.txt")) {
  615.  
  616.                                 $maj_description = file_get_contents("$maj_data_directory/items/$maj_req_entry/body.txt");
  617.                                 $maj_description = strip_tags($maj_description);
  618.                                 $maj_description = html_entity_decode($maj_description);
  619.                                 $maj_description = str_replace("&","&amp;",$maj_description);
  620.                                 $maj_description = str_replace("<","&lt;",$maj_description);
  621.                                 $maj_description = str_replace(">","&gt;",$maj_description);
  622.                                 $maj_description = str_replace("<br />"," ",$maj_description);
  623.                                 $maj_description = str_replace("<br>"," ",$maj_description);
  624.                                 $maj_description = str_replace("\r"," ",$maj_description);
  625.                                 $maj_description = str_replace("\n"," ",$maj_description);
  626.                                 $maj_description = str_replace(chr(10)," ",$maj_description);
  627.                                 $maj_description = str_replace(chr(13)," ",$maj_description);
  628.                                 $maj_description = trim($maj_description);
  629.                                 $maj_description = substr($maj_description,0,210);
  630.                                 $maj_description = htmlentities($maj_description,ENT_NOQUOTES);
  631.  
  632.                                 if (file_exists("$maj_data_directory/pf.txt") and file_exists("$maj_data_directory/pf-badwords.txt") and (!isset($maj_logged_in_username) or empty($maj_logged_in_username) or (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username)))) {
  633.  
  634.                                         $maj_badwords = file_get_contents("$maj_data_directory/pf-badwords.txt");
  635.  
  636.                                         if (file_exists("$maj_data_directory/pf-censor.txt")) {
  637.                                                 $maj_censor = file_get_contents("$maj_data_directory/pf-censor.txt");
  638.                                         }
  639.                                         else {
  640.                                                 $maj_censor = "[expletive]";
  641.                                         }
  642.  
  643.                                         $maj_description = preg_replace("/\b($maj_badwords)\b/i",$maj_censor,$maj_description);
  644.                                 }
  645.  
  646.                                 echo "<meta name=\"description\" content=\"{$maj_description}\">";
  647.                         }
  648.                 }
  649.         }
  650. }
  651.  
  652. include("css.php");
  653.  
  654. ?>
  655.  
  656. <link rel="alternate" type="application/rss+xml" title="RSS 0.91" href="rss.php?ver=0.91">
  657. <link rel="alternate" type="application/rss+xml" title="RSS 1.0" href="rss.php?ver=1.0">
  658. <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss.php?ver=2.0">
  659.  
  660. <?php
  661.  
  662. if (file_exists("$maj_data_directory/center.txt")) {
  663.         echo "<center>";
  664. }
  665.  
  666. if (file_exists("$maj_data_directory/header.txt")) {
  667.  
  668.         $maj_header_panel = file_get_contents("$maj_data_directory/header.txt");
  669.  
  670.         if (file_exists("$maj_data_directory/panels/$maj_header_panel") and (!file_exists("$maj_data_directory/panels/$maj_header_panel/private.txt") or isset($maj_logged_in_username))) {
  671.                 include("$maj_data_directory/panels/$maj_header_panel/panel.php");
  672.         }
  673.  
  674. }
  675.  
  676. echo "\r\n\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"$maj_wtable\">\r\n\r\n";
  677.  
  678. echo "<tr>\r\n<td width=\"$maj_wspace\" rowspan=\"2\"><div style=\"width: {$maj_wspace}px;\"></div></td>\r\n<td width=\"$maj_wside\" height=\"$maj_wspace\"><div style=\"width: {$maj_wside}px; height: {$maj_wspace}px;\"></div></td>\r\n<td width=\"$maj_wspace\" rowspan=\"2\"><div style=\"width: {$maj_wspace}px;\"></div></td>\r\n<td width=\"$maj_wmain\" height=\"$maj_wspace\"><div style=\"width: {$maj_wmain}px; height: {$maj_wspace}px;\"></div></td>\r\n<td width=\"$maj_wspace\" rowspan=\"2\"><div style=\"width: {$maj_wspace}px;\"></div></td>\r\n<td width=\"$maj_wside\" height=\"$maj_wspace\"><div style=\"width: {$maj_wside}px; height: {$maj_wspace}px;\"></div></td>\r\n<td width=\"$maj_wspace\" rowspan=\"2\"><div style=\"width: {$maj_wspace}px;\"></div></td>\r\n</tr>\r\n\r\n";
  679.  
  680. echo "<tr><td width=\"$maj_wside\" valign=\"top\">\r\n";
  681.  
  682. if (!file_exists("$maj_data_directory/xprofile.txt") or ($maj_logged_in_username == $maj_admin_username)) {
  683.  
  684.         echo "\r\n<div class=\"panel_wrapper\">\r\n\r\n\t<div class=\"panel_title\">Profile</div>\r\n\r\n\t<div class=\"panel_body\">\r\n\t\t";
  685.        
  686.         if (file_exists("images/profile.gif")) {
  687.                 $maj_profile_gif_image_size = getimagesize("images/profile.gif");
  688.                 $maj_profile_gif_image_width = $maj_profile_gif_image_size[0];
  689.                 $maj_profile_gif_image_height = $maj_profile_gif_image_size[1];
  690.        
  691.                 if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/avatar.txt")) {
  692.                         $maj_max_profile_gif_image_width = 150;
  693.                 }
  694.                 else {
  695.                         $maj_max_profile_gif_image_width = 190;
  696.                 }
  697.        
  698.                 if ($maj_profile_gif_image_width > $maj_max_profile_gif_image_width) {  
  699.                         $maj_sizefactor = (double) ($maj_max_profile_gif_image_width / $maj_profile_gif_image_width) ;
  700.                         $maj_profile_gif_image_width = (int) ($maj_profile_gif_image_width * $maj_sizefactor);
  701.                         $maj_profile_gif_image_height = (int) ($maj_profile_gif_image_height * $maj_sizefactor);
  702.  
  703.                         echo "<a href=\".\"><img src=\"images/profile.gif\" border=\"0\" width=\"$maj_profile_gif_image_width\" height=\"$maj_profile_gif_image_height\"></a><br>";
  704.                 }
  705.                 else {
  706.                         echo "<a href=\".\"><img src=\"images/profile.gif\" border=\"0\" width=\"$maj_profile_gif_image_width\" height=\"$maj_profile_gif_image_height\" align=\"left\"></a>";
  707.                 }
  708.         }
  709.  
  710.         if (file_exists("images/profile.jpg")) {
  711.                 $maj_profile_jpg_image_size = getimagesize("images/profile.jpg");
  712.                 $maj_profile_jpg_image_width = $maj_profile_jpg_image_size[0];
  713.                 $maj_profile_jpg_image_height = $maj_profile_jpg_image_size[1];
  714.  
  715.                 if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/avatar.txt")) {
  716.                         $maj_max_profile_jpg_image_width = 150;
  717.                 }
  718.                 else {
  719.                         $maj_max_profile_jpg_image_width = 190;
  720.                 }
  721.                
  722.                 if ($maj_profile_jpg_image_width > $maj_max_profile_jpg_image_width) {  
  723.                         $maj_sizefactor = (double) ($maj_max_profile_jpg_image_width / $maj_profile_jpg_image_width) ;
  724.                         $maj_profile_jpg_image_width = (int) ($maj_profile_jpg_image_width * $maj_sizefactor);
  725.                         $maj_profile_jpg_image_height = (int) ($maj_profile_jpg_image_height * $maj_sizefactor);
  726.        
  727.                         echo "<a href=\".\"><img src=\"images/profile.jpg\" border=\"0\" width=\"$maj_profile_jpg_image_width\" height=\"$maj_profile_jpg_image_height\"></a><br>";
  728.                 }
  729.                 else {
  730.                         echo "<a href=\".\"><img src=\"images/profile.jpg\" border=\"0\" width=\"$maj_profile_jpg_image_width\" height=\"$maj_profile_jpg_image_height\" align=\"left\"></a>";
  731.                 }
  732.         }
  733.  
  734.         if (file_exists("images/profile.png")) {
  735.                 $maj_profile_png_image_size = getimagesize("images/profile.png");
  736.                 $maj_profile_png_image_width = $maj_profile_png_image_size[0];
  737.                 $maj_profile_png_image_height = $maj_profile_png_image_size[1];
  738.        
  739.                 if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/avatar.txt")) {
  740.                         $maj_max_profile_png_image_width = 150;
  741.                 }
  742.                 else {
  743.                         $maj_max_profile_png_image_width = 190;
  744.                 }
  745.        
  746.                 if ($maj_profile_png_image_width > $maj_max_profile_png_image_width) {  
  747.                         $maj_sizefactor = (double) ($maj_max_profile_png_image_width / $maj_profile_png_image_width) ;
  748.                         $maj_profile_png_image_width = (int) ($maj_profile_png_image_width * $maj_sizefactor);
  749.                         $maj_profile_png_image_height = (int) ($maj_profile_png_image_height * $maj_sizefactor);
  750.        
  751.                         echo "<a href=\".\"><img src=\"images/profile.png\" border=\"0\" width=\"$maj_profile_png_image_width\" height=\"$maj_profile_png_image_height\"></a><br>";
  752.                 }
  753.                 else {
  754.                         echo "<a href=\".\"><img src=\"images/profile.png\" border=\"0\" width=\"$maj_profile_png_image_width\" height=\"$maj_profile_png_image_height\" align=\"left\"></a>";
  755.                 }      
  756.         }
  757.  
  758.         include("$maj_data_directory/profile.php");
  759.  
  760.         echo "\r\n\t</div>\r\n</div>\r\n\r\n";
  761. }
  762.  
  763. if (!file_exists("$maj_data_directory/xnavigation.txt") or ($maj_logged_in_username == $maj_admin_username)) {
  764.        
  765.         echo "<div class=\"panel_wrapper\">\r\n\r\n\t<div class=\"panel_title\">Navigation</div>\r\n\r\n\t<div class=\"panel_body\">\r\n\t\t<a class=\"navlink\" href=\".\">Home</a><br>\r\n";
  766.  
  767.         if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/members/active")) {
  768.                 echo "\t\t<a class=\"navlink\" href=\"member.php?id=all\">Members</a><br>\r\n";
  769.         }
  770.  
  771.         if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  772.                 echo "\t\t<a class=\"navlink\" href=\"add.php\">Add Entry</a><br>\r\n";
  773.                 echo "\t\t<a class=\"navlink\" href=\"settings.php\">Settings</a><br>\r\n";
  774.                 echo "\t\t<a class=\"navlink\" href=\"panels.php\">Panels</a><br>\r\n";
  775.                 echo "\t\t<a class=\"navlink\" href=\"cat.php\">Categories</a><br>\r\n";
  776.                 echo "\t\t<a class=\"navlink\" href=\"colors.php\">Colors</a><br>\r\n";
  777.                 echo "\t\t<a class=\"navlink\" href=\"fonts.php\">Fonts</a><br>\r\n";
  778.                 echo "\t\t<a class=\"navlink\" href=\"login.php\">Logout</a>\r\n";
  779.         }
  780.         elseif (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username") and file_exists("$maj_data_directory/bb.txt")) {
  781.  
  782.                 if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/categories/$maj_req_category")) {
  783.        
  784.                         if (!file_exists("$maj_data_directory/categories/$maj_req_category")) {
  785.                                 rmdirr("$maj_data_directory/members/active/$maj_logged_in_username/categories/$maj_req_category");
  786.                         }
  787.                 }
  788.  
  789.                 if (!file_exists("$maj_data_directory/noadd.txt") and (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-rw.txt") or file_exists("$maj_data_directory/members/active/$maj_logged_in_username/categories/$maj_req_category"))) {
  790.                         echo '<a class="navlink" href="add.php">Add Entry</a><br>';
  791.                 }
  792.  
  793.                 echo '<a class="navlink" href="options.php">Options</a><br>';
  794.                 echo '<a class="navlink" href="login.php">Logout</a>';
  795.         }
  796.         else {
  797.                 if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/reg.txt")) {
  798.                         echo '<a class="navlink" href="reg.php">Register</a><br>';
  799.                 }
  800.  
  801.                 echo '<a class="navlink" href="login.php">Login</a>';
  802.         }
  803.  
  804.         echo "\t</div>\r\n</div>\r\n";
  805. }
  806.  
  807. if (file_exists("$maj_data_directory/sticky")) {
  808.  
  809.         if ($maj_dh_sticky = opendir("$maj_data_directory/sticky")) {
  810.  
  811.                 while (($maj_sticky_entry = readdir($maj_dh_sticky)) !== false) {
  812.  
  813.                         if (file_exists("$maj_data_directory/items/$maj_sticky_entry/private.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  814.                                 continue;
  815.                         }
  816.  
  817.                         if (file_exists("$maj_data_directory/items/$maj_sticky_entry/member.txt") and (!isset($maj_logged_in_username))) {
  818.                                 continue;
  819.                         }
  820.  
  821.                         $maj_private_categories = "0";
  822.  
  823.                         if (file_exists("$maj_data_directory/items/$maj_sticky_entry/categories")) {
  824.                        
  825.                                 if ($maj_dh_sticky_categories = opendir("$maj_data_directory/items/$maj_sticky_entry/categories")) {
  826.                        
  827.                                         while (($maj_sticky_category = readdir($maj_dh_sticky_categories)) !== false) {
  828.                        
  829.                                                 if ($maj_sticky_category != "." && $maj_sticky_category != "..") {
  830.                        
  831.                                                         if (file_exists("$maj_data_directory/categories/$maj_sticky_category/private.txt")) {
  832.                                                                 $maj_private_categories = $maj_private_categories + 1;
  833.                                                         }
  834.                                                 }
  835.                                         }
  836.                                         closedir($maj_dh_sticky_categories);
  837.                                 }
  838.                         }
  839.  
  840.                         if (($maj_private_categories > 0) and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and !file_exists("$maj_data_directory/items/$maj_sticky_entry/cat.txt")) {
  841.                                 continue;
  842.                         }
  843.  
  844.                         if ($maj_sticky_entry != "." && $maj_sticky_entry != "..") {
  845.                                 $maj_sticky_entries[] = $maj_sticky_entry;
  846.                         }
  847.                 }
  848.                 closedir($maj_dh_sticky);
  849.         }
  850.  
  851.         sort($maj_sticky_entries);
  852.         reset($maj_sticky_entries);
  853.  
  854.         $maj_count_sticky_list = count($maj_sticky_entries);
  855.        
  856.         if ($maj_count_sticky_list > 0) {
  857.  
  858.                 echo '<div class="panel_wrapper"><div class="panel_title">Quick Links</div>';
  859.                 echo '<div class="panel_body">';
  860.  
  861.                 foreach ($maj_sticky_entries as $maj_sticky_list_entry) {
  862.                         echo "<a class=\"navlink\" href=\"index.php?entry=$maj_sticky_list_entry\">";
  863.                         readfile("$maj_data_directory/items/$maj_sticky_list_entry/title.txt");
  864.                         echo "</a><br>";
  865.                 }
  866.  
  867.                 echo '</div></div>';
  868.         }
  869. }
  870.  
  871. if (file_exists("$maj_data_directory/panels")) {
  872.  
  873.         if ($maj_dh_panels = opendir("$maj_data_directory/panels")) {
  874.  
  875.                 while (($maj_panel = readdir($maj_dh_panels)) !== false) {
  876.  
  877.                         if ($maj_panel != "." && $maj_panel != "..") {
  878.  
  879.                                 if (file_exists("$maj_data_directory/panels/$maj_panel/private.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  880.                                         continue;
  881.                                 }
  882.  
  883.                                 if (file_exists("$maj_data_directory/panels/$maj_panel/auth.txt") and !isset($maj_logged_in_username)) {
  884.                                         continue;
  885.                                 }
  886.  
  887.                                 if (file_exists("$maj_data_directory/panels/$maj_panel/right.txt")) {
  888.                                         $maj_right_panels[] = $maj_panel;
  889.                                         continue;
  890.                                 }
  891.  
  892.                                 if (file_exists("$maj_data_directory/panels/$maj_panel/top.txt")) {
  893.                                         $maj_top_panels[] = $maj_panel;
  894.                                         continue;
  895.                                 }
  896.  
  897.                                 if (file_exists("$maj_data_directory/panels/$maj_panel/bottom.txt")) {
  898.                                         $maj_bottom_panels[] = $maj_panel;
  899.                                         continue;
  900.                                 }
  901.  
  902.                                 if (file_exists("$maj_data_directory/panels/$maj_panel/center.txt")) {
  903.                                         $maj_center_panels[] = $maj_panel;
  904.                                         continue;
  905.                                 }
  906.  
  907.                                 if (file_exists("$maj_data_directory/panels/$maj_panel/entry.txt")) {
  908.                                         $maj_entry_panels[] = $maj_panel;
  909.                                         continue;
  910.                                 }
  911.  
  912.                                 if (file_exists("$maj_data_directory/header.txt") and (file_get_contents("$maj_data_directory/header.txt") == $maj_panel)) {
  913.                                         continue;
  914.                                 }
  915.  
  916.                                 if (file_exists("$maj_data_directory/footer.txt") and (file_get_contents("$maj_data_directory/footer.txt") == $maj_panel)) {
  917.                                         continue;
  918.                                 }
  919.  
  920.                                 $maj_left_panels[] = $maj_panel;
  921.                         }
  922.                 }
  923.                 closedir($maj_dh_panels);
  924.         }
  925.  
  926.         sort($maj_left_panels);
  927.         reset($maj_left_panels);
  928.  
  929.         $maj_count_left_panels = count($maj_left_panels);
  930.  
  931.         sort($maj_right_panels);
  932.         reset($maj_right_panels);
  933.  
  934.         $maj_count_right_panels = count($maj_right_panels);
  935.  
  936.         sort($maj_top_panels);
  937.         reset($maj_top_panels);
  938.  
  939.         $maj_count_top_panels = count($maj_top_panels);
  940.  
  941.         sort($maj_bottom_panels);
  942.         reset($maj_bottom_panels);
  943.  
  944.         $maj_count_bottom_panels = count($maj_bottom_panels);
  945.  
  946.         sort($maj_center_panels);
  947.         reset($maj_center_panels);
  948.  
  949.         $maj_count_center_panels = count($maj_center_panels);
  950.  
  951.         sort($maj_entry_panels);
  952.         reset($maj_entry_panels);
  953.  
  954.         $maj_count_entry_panels = count($maj_entry_panels);
  955.  
  956.         if ($maj_count_left_panels > 0) {
  957.  
  958.                 foreach ($maj_left_panels as $maj_left_panel) {
  959.  
  960.                         if (!file_exists("$maj_data_directory/panels/$maj_left_panel/free.txt")) {
  961.  
  962.                                 if (file_exists("$maj_data_directory/panels/$maj_left_panel/border.txt")) {
  963.                                         $maj_left_panel_border = file_get_contents("$maj_data_directory/panels/$maj_left_panel/border.txt");
  964.                                 }
  965.                                 else {
  966.                                         if (isset($maj_left_panel_border)) {
  967.                                                 unset($maj_left_panel_border);
  968.                                         }
  969.                                 }
  970.  
  971.                                 if (file_exists("$maj_data_directory/panels/$maj_left_panel/bgcolor-t.txt")) {
  972.                                         $maj_left_panel_bgcolor_t = file_get_contents("$maj_data_directory/panels/$maj_left_panel/bgcolor-t.txt");
  973.                                 }
  974.                                 else {
  975.                                         if (isset($maj_left_panel_bgcolor_t)) {
  976.                                                 unset($maj_left_panel_bgcolor_t);
  977.                                         }
  978.                                 }
  979.  
  980.                                 if (file_exists("$maj_data_directory/panels/$maj_left_panel/bgcolor-c.txt")) {
  981.                                         $maj_left_panel_bgcolor_c = file_get_contents("$maj_data_directory/panels/$maj_left_panel/bgcolor-c.txt");
  982.                                 }
  983.                                 else {
  984.                                         if (isset($maj_left_panel_bgcolor_c)) {
  985.                                                 unset($maj_left_panel_bgcolor_c);
  986.                                         }
  987.                                 }
  988.  
  989.                                 if (file_exists("$maj_data_directory/panels/$maj_left_panel/text-t.txt")) {
  990.                                         $maj_left_panel_text_t = file_get_contents("$maj_data_directory/panels/$maj_left_panel/text-t.txt");
  991.                                 }
  992.                                 else {
  993.                                         if (isset($maj_left_panel_text_t)) {
  994.                                                 unset($maj_left_panel_text_t);
  995.                                         }
  996.                                 }
  997.  
  998.                                 if (file_exists("$maj_data_directory/panels/$maj_left_panel/text-c.txt")) {
  999.                                         $maj_left_panel_text_c = file_get_contents("$maj_data_directory/panels/$maj_left_panel/text-c.txt");
  1000.                                 }
  1001.                                 else {
  1002.                                         if (isset($maj_left_panel_text_c)) {
  1003.                                                 unset($maj_left_panel_text_c);
  1004.                                         }
  1005.                                 }
  1006.  
  1007.                                 echo "\r\n<div class=\"panel_wrapper\">\r\n\r\n\t<div class=\"panel_title\"";
  1008.  
  1009.                                 if (isset($maj_left_panel_border) or isset($maj_left_panel_bgcolor_t) or isset($maj_left_panel_text_t)) {
  1010.                                         echo ' style="';
  1011.                                 }
  1012.  
  1013.                                 if (isset($maj_left_panel_bgcolor_t)) {
  1014.                                         echo "background-color: $maj_left_panel_bgcolor_t;";
  1015.                                 }
  1016.  
  1017.                                 if (isset($maj_left_panel_text_t)) {
  1018.                                         echo "color: $maj_left_panel_text_t;";
  1019.                                 }
  1020.  
  1021.                                 if (isset($maj_left_panel_border)) {
  1022.                                         echo "border-color: $maj_left_panel_border;";
  1023.                                 }
  1024.  
  1025.                                 if (isset($maj_left_panel_border) or isset($maj_left_panel_bgcolor_t) or isset($maj_left_panel_text_t)) {
  1026.                                         echo '"';
  1027.                                 }
  1028.  
  1029.                                 echo ">";
  1030.  
  1031.                                 readfile("$maj_data_directory/panels/$maj_left_panel/title.txt");
  1032.  
  1033.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  1034.                                         echo "<a href=\"panels.php#{$maj_left_panel}\">";
  1035.                                         echo '<img src="images/widget.edit.png" border="0" width="11" height="11" align="right"></a>';
  1036.                                 }
  1037.  
  1038.                                 if (file_exists("$maj_data_directory/panels/$maj_left_panel/private.txt")) {
  1039.                                         echo '<img src="images/widget.private.png" border="0" width="11" height="11" align="right">';
  1040.                                 }
  1041.  
  1042.                                 echo "</div>";
  1043.  
  1044.                                 echo "\r\n\r\n\t<div class=\"panel_body\"";
  1045.  
  1046.                                 if (isset($maj_left_panel_border) or isset($maj_left_panel_bgcolor_c) or isset($maj_left_panel_text_c)) {
  1047.                                         echo ' style="';
  1048.                                 }
  1049.  
  1050.                                 if (isset($maj_left_panel_bgcolor_c)) {
  1051.                                         echo "background-color: $maj_left_panel_bgcolor_c;";
  1052.                                 }
  1053.  
  1054.                                 if (isset($maj_left_panel_text_c)) {
  1055.                                         echo "color: $maj_left_panel_text_c;";
  1056.                                 }
  1057.  
  1058.                                 if (isset($maj_left_panel_border)) {
  1059.                                         echo "border-color: $maj_left_panel_border;";
  1060.                                 }
  1061.  
  1062.                                 if (isset($maj_left_panel_border) or isset($maj_left_panel_bgcolor_c) or isset($maj_left_panel_text_c)) {
  1063.                                         echo '"';
  1064.                                 }
  1065.  
  1066.                                 echo ">\r\n\t\t";
  1067.                         }
  1068.  
  1069.                         if (file_exists("$maj_data_directory/panels/$maj_left_panel/free.txt")) {
  1070.                                 echo '<div class=panel_free>';
  1071.                         }
  1072.  
  1073.                         include("$maj_data_directory/panels/$maj_left_panel/panel.php");
  1074.  
  1075.                         echo "\r\n\t</div>\r\n</div>\r\n";
  1076.  
  1077.                         if (file_exists("$maj_data_directory/panels/$maj_left_panel/free.txt") and !file_exists("$maj_data_directory/panels/$maj_left_panel/nomargin.txt")) {
  1078.                                 echo "<div style=\"height: {$maj_wspace}px;\"></div>";
  1079.                         }
  1080.                 }
  1081.         }
  1082. }
  1083.  
  1084. // main
  1085.  
  1086. echo "\r\n\r\n<td valign=\"top\" width=\"$maj_wmain\">\r\n\r\n";
  1087.  
  1088. if ($maj_count_top_panels > 0) {
  1089.  
  1090.         foreach ($maj_top_panels as $maj_top_panel) {
  1091.  
  1092.                 if (!file_exists("$maj_data_directory/panels/$maj_top_panel/free.txt")) {
  1093.  
  1094.                         if (file_exists("$maj_data_directory/panels/$maj_top_panel/border.txt")) {
  1095.                                 $maj_top_panel_border = file_get_contents("$maj_data_directory/panels/$maj_top_panel/border.txt");
  1096.                         }
  1097.                         else {
  1098.                                 if (isset($maj_top_panel_border)) {
  1099.                                         unset($maj_top_panel_border);
  1100.                                 }
  1101.                         }
  1102.  
  1103.                         if (file_exists("$maj_data_directory/panels/$maj_top_panel/bgcolor-t.txt")) {
  1104.                                 $maj_top_panel_bgcolor_t = file_get_contents("$maj_data_directory/panels/$maj_top_panel/bgcolor-t.txt");
  1105.                         }
  1106.                         else {
  1107.                                 if (isset($maj_top_panel_bgcolor_t)) {
  1108.                                         unset($maj_top_panel_bgcolor_t);
  1109.                                 }
  1110.                         }
  1111.  
  1112.                         if (file_exists("$maj_data_directory/panels/$maj_top_panel/bgcolor-c.txt")) {
  1113.                                 $maj_top_panel_bgcolor_c = file_get_contents("$maj_data_directory/panels/$maj_top_panel/bgcolor-c.txt");
  1114.                         }
  1115.                         else {
  1116.                                 if (isset($maj_top_panel_bgcolor_c)) {
  1117.                                         unset($maj_top_panel_bgcolor_c);
  1118.                                 }
  1119.                         }
  1120.  
  1121.                         if (file_exists("$maj_data_directory/panels/$maj_top_panel/text-t.txt")) {
  1122.                                 $maj_top_panel_text_t = file_get_contents("$maj_data_directory/panels/$maj_top_panel/text-t.txt");
  1123.                         }
  1124.                         else {
  1125.                                 if (isset($maj_top_panel_text_t)) {
  1126.                                         unset($maj_top_panel_text_t);
  1127.                                 }
  1128.                         }
  1129.  
  1130.                         if (file_exists("$maj_data_directory/panels/$maj_top_panel/text-c.txt")) {
  1131.                                 $maj_top_panel_text_c = file_get_contents("$maj_data_directory/panels/$maj_top_panel/text-c.txt");
  1132.                         }
  1133.                         else {
  1134.                                 if (isset($maj_top_panel_text_c)) {
  1135.                                         unset($maj_top_panel_text_c);
  1136.                                 }
  1137.                         }
  1138.  
  1139.                         echo "\t<div class=\"panel_wrapper\">\r\n\r\n\t\t<div class=\"panel_title\"";
  1140.  
  1141.                         if (isset($maj_top_panel_border) or isset($maj_top_panel_bgcolor_t) or isset($maj_top_panel_text_t)) {
  1142.                                 echo ' style="';
  1143.                         }
  1144.  
  1145.                         if (isset($maj_top_panel_bgcolor_t)) {
  1146.                                 echo "background-color: $maj_top_panel_bgcolor_t;";
  1147.                         }
  1148.  
  1149.                         if (isset($maj_top_panel_text_t)) {
  1150.                                 echo "color: $maj_top_panel_text_t;";
  1151.                         }
  1152.  
  1153.                         if (isset($maj_top_panel_border)) {
  1154.                                 echo "border-color: $maj_top_panel_border;";
  1155.                         }
  1156.  
  1157.                         if (isset($maj_top_panel_border) or isset($maj_top_panel_bgcolor_t) or isset($maj_top_panel_text_t)) {
  1158.                                 echo '"';
  1159.                         }
  1160.  
  1161.                         echo '>';
  1162.  
  1163.                         readfile("$maj_data_directory/panels/$maj_top_panel/title.txt");
  1164.  
  1165.                         if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  1166.                                 echo "<a href=\"panels.php#{$maj_top_panel}\">";
  1167.                                 echo '<img src="images/widget.edit.png" border="0" width="11" height="11" align="right"></a>';
  1168.                         }
  1169.  
  1170.                         if (file_exists("$maj_data_directory/panels/$maj_top_panel/private.txt")) {
  1171.                                 echo '<img src="images/widget.private.png" border="0" width="11" height="11" align="right">';
  1172.                         }
  1173.  
  1174.                         echo "</div>\r\n\r\n\t\t";
  1175.  
  1176.                         echo '<div class="panel_body"';
  1177.  
  1178.                         if (isset($maj_top_panel_border) or isset($maj_top_panel_bgcolor_c) or isset($maj_top_panel_text_c)) {
  1179.                                 echo ' style="';
  1180.                         }
  1181.  
  1182.                         if (isset($maj_top_panel_bgcolor_c)) {
  1183.                                 echo "background-color: $maj_top_panel_bgcolor_c;";
  1184.                         }
  1185.  
  1186.                         if (isset($maj_top_panel_text_c)) {
  1187.                                 echo "color: $maj_top_panel_text_c;";
  1188.                         }
  1189.  
  1190.                         if (isset($maj_top_panel_border)) {
  1191.                                 echo "border-color: $maj_top_panel_border;";
  1192.                         }
  1193.  
  1194.                         if (isset($maj_top_panel_border) or isset($maj_top_panel_bgcolor_c) or isset($maj_top_panel_text_c)) {
  1195.                                 echo '"';
  1196.                         }
  1197.  
  1198.                         echo ">\r\n\t\t\t";
  1199.                 }
  1200.  
  1201.                 if (file_exists("$maj_data_directory/panels/$maj_top_panel/free.txt")) {
  1202.                         echo '<div class=panel_free>';
  1203.                 }
  1204.  
  1205.                 include("$maj_data_directory/panels/$maj_top_panel/panel.php");
  1206.  
  1207.                 echo "\r\n\t\t</div>\r\n\t</div>\r\n\r\n";
  1208.  
  1209.                 if (file_exists("$maj_data_directory/panels/$maj_top_panel/free.txt") and !file_exists("$maj_data_directory/panels/$maj_top_panel/nomargin.txt")) {
  1210.                         echo "<div style=\"height: {$maj_wspace}px;\"></div>";
  1211.                 }
  1212.         }
  1213. }
  1214.  
  1215. // clean-up (start)
  1216.  
  1217. if (file_exists("$maj_data_directory/albums")) {
  1218.         rmdirr("$maj_data_directory/albums");
  1219. }
  1220.  
  1221. // clean-up (end)
  1222.  
  1223. // global entry items (start)
  1224.  
  1225. if ($maj_dh_items = opendir("$maj_data_directory/items")) {
  1226.  
  1227.         while (($maj_item = readdir($maj_dh_items)) !== false) {
  1228.  
  1229.                 if ($maj_item != "." && $maj_item != "..") {
  1230.                
  1231.                         if (file_exists("$maj_data_directory/items/$maj_item/categories")) {
  1232.  
  1233.                                 if ($maj_dh_egroups = opendir("$maj_data_directory/items/$maj_item/categories")) {
  1234.  
  1235.                                         while (($maj_egroup = readdir($maj_dh_egroups)) !== false) {
  1236.  
  1237.                                                 if ($maj_egroup != "." && $maj_egroup != "..") {
  1238.                                                        
  1239.                                                         if (!file_exists("$maj_data_directory/categories/$maj_egroup")) {
  1240.                                                                 rmdirr("$maj_data_directory/items/$maj_item/categories/$maj_egroup");
  1241.                                                         }
  1242.  
  1243.                                                         if (file_exists("$maj_data_directory/categories/$maj_egroup/members")) {
  1244.  
  1245.                                                                 if ($maj_dh_mgroups = opendir("$maj_data_directory/categories/$maj_egroup/members")) {
  1246.  
  1247.                                                                         while (($maj_mgroup = readdir($maj_dh_mgroups)) !== false) {
  1248.  
  1249.                                                                                 if ($maj_mgroup != "." && $maj_mgroup != "..") {
  1250.                                                                
  1251.                                                                                         if (!file_exists("$maj_data_directory/items/$maj_item/members/$maj_mgroup")) {
  1252.  
  1253.                                                                                                 if (!file_exists("$maj_data_directory/items/$maj_item/members")) {
  1254.                                                                                                         mkdir("$maj_data_directory/items/$maj_item/members");
  1255.                                                                                                 }
  1256.  
  1257.                                                                                                 mkdir("$maj_data_directory/items/$maj_item/members/$maj_mgroup");
  1258.                                                                                         }
  1259.                                                                                 }
  1260.                                                                         }
  1261.                                                                         closedir($maj_dh_mgroups);
  1262.                                                                 }
  1263.                                                         }
  1264.                                                 }
  1265.                                         }
  1266.                                         closedir($maj_dh_egroups);
  1267.                                 }
  1268.                         }
  1269.  
  1270.                         if (file_exists("$maj_data_directory/items/$maj_item/categories") and (count(glob("$maj_data_directory/items/$maj_item/categories/*")) < 1)) {
  1271.                                 rmdirr("$maj_data_directory/items/$maj_item/categories");
  1272.                         }
  1273.  
  1274.                         if (file_exists("$maj_data_directory/items/$maj_item/members")) {
  1275.  
  1276.                                 if ($maj_dh_members = opendir("$maj_data_directory/items/$maj_item/members")) {
  1277.  
  1278.                                         while (($maj_member = readdir($maj_dh_members)) !== false) {
  1279.  
  1280.                                                 if ($maj_member != "." && $maj_member != "..") {
  1281.  
  1282.                                                         if (!file_exists("$maj_data_directory/members/active/$maj_member")) {
  1283.                                                                 rmdirr("$maj_data_directory/items/$maj_item/members/$maj_member");
  1284.                                                         }
  1285.                                                 }
  1286.                                         }
  1287.                                         closedir("$maj_data_directory/items/$maj_item/members");
  1288.                                 }
  1289.                         }
  1290.  
  1291.                         if (file_exists("$maj_data_directory/items/$maj_item/members") and (count(glob("$maj_data_directory/items/$maj_item/members/*")) < 1)) {
  1292.                                 rmdirr("$maj_data_directory/items/$maj_item/members");
  1293.                         }
  1294.  
  1295.                         if (file_exists("$maj_data_directory/items/$maj_item/comments/live") and (count(glob("$maj_data_directory/items/$maj_item/comments/live/*")) < 1)) {
  1296.                                 rmdirr("$maj_data_directory/items/$maj_item/comments/live");
  1297.                         }
  1298.  
  1299.                         if (file_exists("$maj_data_directory/items/$maj_item/comments/pending") and (count(glob("$maj_data_directory/items/$maj_item/comments/pending/*")) < 1)) {
  1300.                                 rmdirr("$maj_data_directory/items/$maj_item/comments/pending");
  1301.                         }
  1302.  
  1303.                         if (file_exists("$maj_data_directory/items/$maj_item/comments") and (count(glob("$maj_data_directory/items/$maj_item/comments/*")) < 1)) {
  1304.                                 rmdirr("$maj_data_directory/items/$maj_item/comments");
  1305.                         }
  1306.  
  1307.                         if (file_exists("$maj_data_directory/items/$maj_item/filedrop/files") and (count(glob("$maj_data_directory/items/$maj_item/filedrop/files/*")) < 1)) {
  1308.                                 rmdirr("$maj_data_directory/items/$maj_item/filedrop/files");
  1309.                         }
  1310.  
  1311.                         if (file_exists("$maj_data_directory/items/$maj_item/filedrop/count") and (count(glob("$maj_data_directory/items/$maj_item/filedrop/count/*")) < 1)) {
  1312.                                 rmdirr("$maj_data_directory/items/$maj_item/filedrop/count");
  1313.                         }
  1314.  
  1315.                         if (file_exists("$maj_data_directory/items/$maj_item/filedrop") and (count(glob("$maj_data_directory/items/$maj_item/filedrop/*")) < 1)) {
  1316.                                 rmdirr("$maj_data_directory/items/$maj_item/filedrop");
  1317.                         }
  1318.  
  1319.                         if ((!file_exists("images/$maj_item/album") or (count(glob("images/$maj_item/album/*")) < 1)) and file_exists("$maj_data_directory/items/$maj_item/album/captions") and (count(glob("$maj_data_directory/items/$maj_item/album/captions/*")) < 1)) {
  1320.                                 rmdirr("$maj_data_directory/items/$maj_item/album/captions");
  1321.                         }
  1322.  
  1323.                         if ((!file_exists("images/$maj_item/album") or (count(glob("images/$maj_item/album/*")) < 1)) and file_exists("$maj_data_directory/items/$maj_item/album/views") and (count(glob("$maj_data_directory/items/$maj_item/album/views/*")) < 1)) {
  1324.                                 rmdirr("$maj_data_directory/items/$maj_item/album/views");
  1325.                                 unlink("$maj_data_directory/items/$maj_item/album/views.txt");
  1326.                         }
  1327.  
  1328.                         if ((!file_exists("images/$maj_item/album") or (count(glob("images/$maj_item/album/*")) < 1)) and file_exists("$maj_data_directory/items/$maj_item/album") and (count(glob("$maj_data_directory/items/$maj_item/album/*")) < 1)) {
  1329.                                 rmdirr("$maj_data_directory/items/$maj_item/album");
  1330.                         }
  1331.  
  1332.                         if (file_exists("images/$maj_item/album") and (count(glob("images/$maj_item/album/*")) < 1)) {
  1333.                                 rmdirr("images/$maj_item/album");
  1334.                         }
  1335.  
  1336.                         if (file_exists("images/$maj_item") and (count(glob("images/$maj_item/*")) < 1)) {
  1337.                                 rmdirr("images/$maj_item");
  1338.                         }
  1339.  
  1340.                         if (file_exists("images/$maj_item/categories") and (count(glob("images/$maj_item/categories/*")) < 1)) {
  1341.                                 rmdirr("images/$maj_item/categories");
  1342.                         }
  1343.  
  1344.                         $maj_grand[] = $maj_item;
  1345.  
  1346.                         if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  1347.  
  1348.                                 if (isset($maj_req_entry) or isset($maj_req_category) or isset($maj_req_archive) or isset($maj_req_find) or isset($maj_req_author)) {
  1349.        
  1350.                                         if (isset($maj_req_entry) and file_exists("$maj_data_directory/items/$maj_req_entry")) {
  1351.                                                 $maj_items[] = $maj_req_entry;
  1352.                                         }
  1353.  
  1354.                                         if (isset($maj_req_category) and file_exists("$maj_data_directory/categories/$maj_req_category") and file_exists("$maj_data_directory/items/$maj_item/categories/$maj_req_category")) {
  1355.                                                 $maj_items[] = $maj_item;
  1356.                                         }
  1357.  
  1358.                                         if (isset($maj_req_archive) and fnmatch("$maj_req_archive*",$maj_item)) {
  1359.                                                 $maj_items[] = $maj_item;
  1360.                                         }
  1361.  
  1362.                                         if (isset($maj_req_author) and (file_exists("$maj_data_directory/members/active/$maj_req_author") or ($maj_admin_username == $maj_req_author)) and (file_get_contents("$maj_data_directory/items/$maj_item/author.txt") == $maj_req_author)) {
  1363.                                                 $maj_items[] = $maj_item;
  1364.                                         }
  1365.  
  1366.                                         if (isset($maj_req_find)) {
  1367.  
  1368.                                                 if ((($maj_req_find == "private") or ($maj_req_find == "member") or ($maj_req_find == "passwd")) and file_exists("$maj_data_directory/items/$maj_item/{$maj_req_find}.txt")) {
  1369.                                                         $maj_items[] = $maj_item;
  1370.                                                 }
  1371.  
  1372.                                                 if ((($maj_req_find == "comments") or ($maj_req_find == "filedrop") or ($maj_req_find == "album")) and file_exists("$maj_data_directory/items/$maj_item/$maj_req_find")) {
  1373.                                                         $maj_items[] = $maj_item;
  1374.                                                 }
  1375.  
  1376.                                                 if (($maj_req_find == "unfiled") and !file_exists("$maj_data_directory/items/$maj_item/categories")) {
  1377.                                                         $maj_items[] = $maj_item;
  1378.                                                 }
  1379.                                         }
  1380.                                 }
  1381.                                 else {
  1382.                                         $maj_items[] = $maj_item;
  1383.                                 }
  1384.  
  1385.                                 $maj_latest[] = $maj_item;
  1386.  
  1387.                                 if (file_exists("$maj_data_directory/items/$maj_item/album")) {
  1388.                                         $maj_albums[] = $maj_item;
  1389.                                 }
  1390.  
  1391.                                 $maj_random[] = $maj_item;                     
  1392.  
  1393.                                 $maj_archives[] = substr($maj_item,0,6);
  1394.                         }
  1395.                         else {
  1396.  
  1397.                                 // non-admin stuff (start)
  1398.  
  1399.                                 $maj_today = date("YmdHis",time() + $maj_offset);
  1400.        
  1401.                                 if ($maj_item > $maj_today) {
  1402.                                         continue;
  1403.                                 }
  1404.  
  1405.                                 if (file_exists("$maj_data_directory/items/$maj_item/private.txt")) {
  1406.                                         continue;
  1407.                                 }
  1408.  
  1409.                                 $maj_private_categories = "0";
  1410.  
  1411.                                 if (file_exists("$maj_data_directory/items/$maj_item/categories")) {
  1412.                        
  1413.                                         if ($maj_dh_entry_categories = opendir("$maj_data_directory/items/$maj_item/categories")) {
  1414.                        
  1415.                                                 while (($maj_item_category = readdir($maj_dh_entry_categories)) !== false) {
  1416.                        
  1417.                                                         if ($maj_item_category != "." && $maj_item_category != "..") {
  1418.                        
  1419.                                                                 if (file_exists("$maj_data_directory/categories/$maj_item_category/private.txt")) {
  1420.                                                                         $maj_private_categories = $maj_private_categories + 1;
  1421.                                                                 }
  1422.                                                         }
  1423.                                                 }
  1424.                                                 closedir($maj_dh_entry_categories);
  1425.                                         }
  1426.                                 }
  1427.  
  1428.                                 if (($maj_private_categories > 0) and !file_exists("$maj_data_directory/items/$maj_item/cat.txt")) {
  1429.                                         continue;
  1430.                                 }
  1431.  
  1432.                                 $maj_latest[] = $maj_item;
  1433.  
  1434.                                 if ((file_exists("$maj_data_directory/items/$maj_item/members") and !isset($maj_logged_in_username)) or (file_exists("$maj_data_directory/items/$maj_item/members") and !file_exists("$maj_data_directory/items/$maj_item/members/$maj_logged_in_username"))) {
  1435.                                         continue;
  1436.                                 }
  1437.  
  1438.                                 if (file_exists("$maj_data_directory/items/$maj_item/member.txt") and (!isset($maj_logged_in_username))) {
  1439.                                         continue;
  1440.                                 }
  1441.  
  1442.                                 if (file_exists("$maj_data_directory/items/$maj_item/album")) {
  1443.                                         $maj_albums[] = $maj_item;
  1444.                                 }
  1445.  
  1446.                                 $maj_random[] = $maj_item;
  1447.                                 $maj_archives[] = substr($maj_item,0,6);
  1448.  
  1449.                                 if (file_exists("$maj_data_directory/nocat.txt") and file_exists("$maj_data_directory/items/$maj_item/categories") and !file_exists("$maj_data_directory/items/$maj_item/cat.txt") and (!isset($maj_req_category) or empty($maj_req_category)) and (!isset($maj_req_entry) or empty($maj_req_entry)) and (!isset($maj_req_author) or empty($maj_req_author))) {
  1450.                                         continue;
  1451.                                 }
  1452.  
  1453.                                 if (isset($maj_req_entry) or isset($maj_req_category) or isset($maj_req_archive) or isset($maj_req_find) or isset($maj_req_author)) {
  1454.        
  1455.                                         if (isset($maj_req_entry) and file_exists("$maj_data_directory/items/$maj_req_entry")) {
  1456.                                                
  1457.                                                 if ($maj_req_entry != $maj_item) {
  1458.                                                         continue;
  1459.                                                 }
  1460.                                                 $maj_items[] = $maj_item;
  1461.                                         }
  1462.  
  1463.                                         if (isset($maj_req_category) and file_exists("$maj_data_directory/categories/$maj_req_category") and file_exists("$maj_data_directory/items/$maj_item/categories/$maj_req_category")) {
  1464.                                                 $maj_items[] = $maj_item;
  1465.                                         }
  1466.  
  1467.                                         if (isset($maj_req_archive) and fnmatch("$maj_req_archive*",$maj_item)) {
  1468.                                                 $maj_items[] = $maj_item;
  1469.                                         }
  1470.  
  1471.                                         if (isset($maj_req_author) and (file_exists("$maj_data_directory/members/active/$maj_req_author") or ($maj_admin_username == $maj_req_author)) and (file_get_contents("$maj_data_directory/items/$maj_item/author.txt") == $maj_req_author)) {
  1472.                                                 $maj_items[] = $maj_item;
  1473.                                         }
  1474.                                 }
  1475.                                 else {
  1476.                                         $maj_items[] = $maj_item;
  1477.                                 }
  1478.  
  1479.                                 // non-admin stuff (end)
  1480.                         }
  1481.                 }
  1482.         }
  1483.         closedir($maj_dh_items);
  1484. }
  1485.  
  1486. sort($maj_grand);
  1487. reset($maj_grand);
  1488.  
  1489. $maj_count_grand = count($maj_grand);
  1490.  
  1491. if (isset($maj_req_entry) and file_exists("$maj_data_directory/items/$maj_req_entry")) {
  1492.  
  1493.         if (file_exists("$maj_data_directory/items/$maj_req_entry/private.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  1494.                 unset($maj_items);
  1495.         }
  1496.  
  1497.         if (file_exists("$maj_data_directory/items/$maj_req_entry/member.txt") and !isset($maj_logged_in_username)) {
  1498.                 unset($maj_items);
  1499.         }
  1500. }
  1501.  
  1502. $maj_items = array_unique($maj_items);
  1503. $maj_items = array_values($maj_items);
  1504.  
  1505. if (file_exists("$maj_data_directory/old.txt")) {
  1506.         sort($maj_items);
  1507. }
  1508. else {
  1509.         rsort($maj_items);
  1510. }
  1511.  
  1512. reset($maj_items);
  1513.  
  1514. $maj_count_items = count($maj_items);
  1515.  
  1516. rsort($maj_latest);
  1517. reset($maj_latest);
  1518.  
  1519. $maj_count_latest = count($maj_latest);
  1520.  
  1521. rsort($maj_albums);
  1522. reset($maj_albums);
  1523.  
  1524. $maj_count_albums = count($maj_albums);
  1525.  
  1526. rsort($maj_random);
  1527. reset($maj_random);
  1528.  
  1529. $maj_count_random = count($maj_random);
  1530.  
  1531. rsort($maj_archives);
  1532. reset($maj_archives);
  1533.  
  1534. $maj_count_archives = count($maj_archives);
  1535.  
  1536. if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/bb-summary.txt") and !file_exists("$maj_data_directory/lite.txt") and !isset($maj_req_entry) and !isset($maj_req_category) and !isset($_REQUEST['start']) and !isset($maj_req_author) and !isset($maj_req_archive) and !isset($maj_req_find)) {
  1537.  
  1538.         if ($maj_count_latest > 0) {
  1539.  
  1540.                 echo "<div class=\"panel_wrapper\"><div class=\"panel_title\">Latest Entries</div>";
  1541.                
  1542.                 echo "<div class=\"panel_body\">";
  1543.                 echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"2\" bgcolor=\"#cccccc\" width=\"100%\">";
  1544.                 echo "<tr><td bgcolor=\"#eeeeee\" align=\"center\">topic</td><td bgcolor=\"#eeeeee\" align=\"center\">author</td><td bgcolor=\"#eeeeee\" align=\"center\">views</td><td bgcolor=\"#eeeeee\" align=\"center\">comments</td><td bgcolor=\"#eeeeee\" align=\"center\">last post</td></tr>";
  1545.  
  1546.                 $maj_increment_latest = 0;
  1547.  
  1548.                 while ($maj_increment_latest <= 4) {
  1549.  
  1550.                         echo "<tr><td bgcolor=\"#ffffff\"><a href=\"index.php?entry=$maj_latest[$maj_increment_latest]";
  1551.  
  1552.                         if ($maj_dh_summary_comments = opendir("$maj_data_directory/items/$maj_latest[$maj_increment_latest]/comments/live")) {
  1553.  
  1554.                                 while (($maj_entry_summary_comments = readdir($maj_dh_summary_comments)) !== false) {
  1555.  
  1556.                                         if ($maj_entry_summary_comments != "." && $maj_entry_summary_comments != "..") {
  1557.                                                 $maj_items_summary_comments[] = $maj_entry_summary_comments;
  1558.                                         }
  1559.                                 }
  1560.                                 closedir($maj_dh_summary_comments);
  1561.                         }
  1562.  
  1563.                         rsort($maj_items_summary_comments);
  1564.  
  1565.                         $maj_summary_comments = count($maj_items_summary_comments);
  1566.        
  1567.                         if ($maj_summary_comments > 0) {
  1568.                                 echo "&show=comments";
  1569.                         }
  1570.        
  1571.                         echo "\">";
  1572.                         readfile("$maj_data_directory/items/$maj_latest[$maj_increment_latest]/title.txt");
  1573.                         echo "</a></td>";
  1574.  
  1575.                         echo "<td bgcolor=\"#ffffff\"><a href=\"member.php?id=";
  1576.                         readfile("$maj_data_directory/items/$maj_latest[$maj_increment_latest]/author.txt");
  1577.                         echo "\">";
  1578.                         readfile("$maj_data_directory/items/$maj_latest[$maj_increment_latest]/author.txt");
  1579.                         echo "</a></td>";
  1580.                         echo "<td bgcolor=\"#ffffff\" align=\"right\">";
  1581.  
  1582.                         if (!file_exists("$maj_data_directory/items/$maj_latest[$maj_increment_latest]/views.txt")) {
  1583.                                 echo 0;
  1584.                         }
  1585.                         else {
  1586.                                 readfile("$maj_data_directory/items/$maj_latest[$maj_increment_latest]/views.txt");
  1587.                         }
  1588.        
  1589.                         echo "</td>";
  1590.  
  1591.                         if ($maj_summary_comments < 1) {
  1592.  
  1593.                                 $maj_iso_year = substr($maj_latest[$maj_increment_latest],0,4);
  1594.                                 $maj_iso_month = substr($maj_latest[$maj_increment_latest],4,2);
  1595.                                 $maj_iso_day = substr($maj_latest[$maj_increment_latest],6,2);
  1596.                                 $maj_iso_last = $maj_iso_year . "-" . $maj_iso_month . "-" . $maj_iso_day;
  1597.  
  1598.                                 echo "<td bgcolor=\"#ffffff\" align=\"right\">0</td>";
  1599.                                 echo "<td bgcolor=\"#ffffff\" align=\"right\">$maj_iso_last</td>";
  1600.                         }
  1601.                         else {
  1602.                                 $maj_iso_year = substr($maj_items_summary_comments[0],0,4);
  1603.                                 $maj_iso_month = substr($maj_items_summary_comments[0],4,2);
  1604.                                 $maj_iso_day = substr($maj_items_summary_comments[0],6,2);
  1605.                                 $maj_iso_last = $maj_iso_year . "-" . $maj_iso_month . "-" . $maj_iso_day;
  1606.  
  1607.                                 echo "<td bgcolor=\"#ffffff\" align=\"right\">$maj_summary_comments</td>";
  1608.                                 echo "<td bgcolor=\"#ffffff\" align=\"right\">$maj_iso_last</td>";
  1609.                         }
  1610.        
  1611.                         unset($maj_items_summary_comments);
  1612.  
  1613.                         $maj_increment_latest = $maj_increment_latest + 1;
  1614.                 }
  1615.         }
  1616.  
  1617.         if ($maj_count_latest > 0) {
  1618.  
  1619.                 echo "</table></div></div>";
  1620.         }
  1621.  
  1622. }
  1623.  
  1624. if ($maj_count_center_panels > 0) {
  1625.  
  1626.         foreach ($maj_center_panels as $maj_center_panel) {
  1627.  
  1628.                 if (!file_exists("$maj_data_directory/panels/$maj_center_panel/free.txt")) {
  1629.  
  1630.                         if (file_exists("$maj_data_directory/panels/$maj_center_panel/border.txt")) {
  1631.                                 $maj_center_panel_border = file_get_contents("$maj_data_directory/panels/$maj_center_panel/border.txt");
  1632.                         }
  1633.                         else {
  1634.                                 if (isset($maj_center_panel_border)) {
  1635.                                         unset($maj_center_panel_border);
  1636.                                 }
  1637.                         }
  1638.  
  1639.                         if (file_exists("$maj_data_directory/panels/$maj_center_panel/bgcolor-t.txt")) {
  1640.                                 $maj_center_panel_bgcolor_t = file_get_contents("$maj_data_directory/panels/$maj_center_panel/bgcolor-t.txt");
  1641.                         }
  1642.                         else {
  1643.                                 if (isset($maj_center_panel_bgcolor_t)) {
  1644.                                         unset($maj_center_panel_bgcolor_t);
  1645.                                 }
  1646.                         }
  1647.  
  1648.                         if (file_exists("$maj_data_directory/panels/$maj_center_panel/bgcolor-c.txt")) {
  1649.                                 $maj_center_panel_bgcolor_c = file_get_contents("$maj_data_directory/panels/$maj_center_panel/bgcolor-c.txt");
  1650.                         }
  1651.                         else {
  1652.                                 if (isset($maj_center_panel_bgcolor_c)) {
  1653.                                         unset($maj_center_panel_bgcolor_c);
  1654.                                 }
  1655.                         }
  1656.  
  1657.                         if (file_exists("$maj_data_directory/panels/$maj_center_panel/text-t.txt")) {
  1658.                                 $maj_center_panel_text_t = file_get_contents("$maj_data_directory/panels/$maj_center_panel/text-t.txt");
  1659.                         }
  1660.                         else {
  1661.                                 if (isset($maj_center_panel_text_t)) {
  1662.                                         unset($maj_center_panel_text_t);
  1663.                                 }
  1664.                         }
  1665.  
  1666.                         if (file_exists("$maj_data_directory/panels/$maj_center_panel/text-c.txt")) {
  1667.                                 $maj_center_panel_text_c = file_get_contents("$maj_data_directory/panels/$maj_center_panel/text-c.txt");
  1668.                         }
  1669.                         else {
  1670.                                 if (isset($maj_center_panel_text_c)) {
  1671.                                         unset($maj_center_panel_text_c);
  1672.                                 }
  1673.                         }
  1674.  
  1675.                         echo '<div class="panel_wrapper"><div class="panel_title"';
  1676.  
  1677.                         if (isset($maj_center_panel_border) or isset($maj_center_panel_bgcolor_t) or isset($maj_center_panel_text_t)) {
  1678.                                 echo ' style="';
  1679.                         }
  1680.  
  1681.                         if (isset($maj_center_panel_bgcolor_t)) {
  1682.                                 echo "background-color: $maj_center_panel_bgcolor_t;";
  1683.                         }
  1684.  
  1685.                         if (isset($maj_center_panel_text_t)) {
  1686.                                 echo "color: $maj_center_panel_text_t;";
  1687.                         }
  1688.  
  1689.                         if (isset($maj_center_panel_border)) {
  1690.                                 echo "border-color: $maj_center_panel_border;";
  1691.                         }
  1692.  
  1693.                         if (isset($maj_center_panel_border) or isset($maj_center_panel_bgcolor_t) or isset($maj_center_panel_text_t)) {
  1694.                                 echo '"';
  1695.                         }
  1696.  
  1697.                         echo '>';
  1698.  
  1699.                         readfile("$maj_data_directory/panels/$maj_center_panel/title.txt");
  1700.  
  1701.                         if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  1702.                                 echo "<a href=\"panels.php#{$maj_center_panel}\">";
  1703.                                 echo '<img src="images/widget.edit.png" border="0" width="11" height="11" align="right"></a>';
  1704.                         }
  1705.  
  1706.                         if (file_exists("$maj_data_directory/panels/$maj_center_panel/private.txt")) {
  1707.                                 echo '<img src="images/widget.private.png" border="0" width="11" height="11" align="right">';
  1708.                         }
  1709.  
  1710.                         echo '</div>';
  1711.  
  1712.                         echo '<div class="panel_body"';
  1713.  
  1714.                         if (isset($maj_center_panel_border) or isset($maj_center_panel_bgcolor_c) or isset($maj_center_panel_text_c)) {
  1715.                                 echo ' style="';
  1716.                         }
  1717.  
  1718.                         if (isset($maj_center_panel_bgcolor_c)) {
  1719.                                 echo "background-color: $maj_center_panel_bgcolor_c;";
  1720.                         }
  1721.  
  1722.                         if (isset($maj_center_panel_text_c)) {
  1723.                                 echo "color: $maj_center_panel_text_c;";
  1724.                         }
  1725.  
  1726.                         if (isset($maj_center_panel_border)) {
  1727.                                 echo "border-color: $maj_center_panel_border;";
  1728.                         }
  1729.  
  1730.                         if (isset($maj_center_panel_border) or isset($maj_center_panel_bgcolor_c) or isset($maj_center_panel_text_c)) {
  1731.                                 echo '"';
  1732.                         }
  1733.  
  1734.                         echo '>';
  1735.                 }
  1736.  
  1737.                 if (file_exists("$maj_data_directory/panels/$maj_center_panel/free.txt")) {
  1738.                         echo '<div class=panel_free>';
  1739.                 }
  1740.  
  1741.                 include("$maj_data_directory/panels/$maj_center_panel/panel.php");
  1742.  
  1743.                 echo '</div></div>';
  1744.  
  1745.                 if (file_exists("$maj_data_directory/panels/$maj_center_panel/free.txt") and !file_exists("$maj_data_directory/panels/$maj_center_panel/nomargin.txt")) {
  1746.                         echo "<div style=\"height: {$maj_wspace}px;\"></div>";
  1747.                 }
  1748.         }
  1749. }
  1750.  
  1751. if (isset($maj_req_category) and !empty($maj_req_category)) {
  1752.  
  1753.         if (file_exists("$maj_data_directory/categories/$maj_req_category/book.txt")) {
  1754.        
  1755.                 if (!file_exists("$maj_data_directory/old.txt")) {
  1756.                         sort($maj_items);
  1757.                 }
  1758.                 else {
  1759.                         rsort($maj_items);
  1760.                 }
  1761.                
  1762.                 reset($maj_items);
  1763.         }
  1764. }
  1765.  
  1766. if ((count($maj_top_panels) == 0) and (count($maj_center_panels) == 0) and (count($maj_bottom_panels) == 0) and ($maj_count_grand == 0)) {
  1767.  
  1768.         echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#cccccc\" style=\"background-color: transparent;\">";
  1769.         echo "<tr><td width=\"$maj_wmain\"><div class=\"panel_wrapper\"><div class=\"panel_title\">Oops!</div>";
  1770.        
  1771.         echo "<div class=\"panel_body\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"4\"><tr>";
  1772.         echo "<td valign=\"middle\"><img src=\"images/oops.png\" width=\"36\" height=\"36\" border=\"0\"></td><td valign=\"middle\">";
  1773.  
  1774.         echo "No entries or central panels found. Perhaps this is a fresh install.";
  1775.  
  1776.         echo "</td></tr></table></div></div>";
  1777.         echo "</td></tr></table>";
  1778. }
  1779.  
  1780. if (($maj_count_items == 0) and ($maj_count_grand > 0)) {
  1781.  
  1782.         if (count($_GET) > 0) {
  1783.  
  1784.                 echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#cccccc\" style=\"background-color: transparent;\">";
  1785.                 echo "<tr><td width=\"$maj_wmain\"><div class=\"panel_wrapper\"><div class=\"panel_title\">Oops!</div>";
  1786.        
  1787.                 echo "<div class=\"panel_body\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"4\"><tr>";
  1788.                 echo "<td valign=\"middle\"><img src=\"images/oops.png\" width=\"36\" height=\"36\" border=\"0\"></td><td valign=\"middle\">";
  1789.  
  1790.                 echo "The entry you are looking for does not exist or is off limits to you.";
  1791.                
  1792.                 echo "</td></tr></table></div></div>";
  1793.                 echo "</td></tr></table>";
  1794.  
  1795.         }
  1796.  
  1797.         if ((count($_GET) == 0) and (count($maj_top_panels) == 0) and (count($maj_center_panels) == 0) and (count($maj_bottom_panels) == 0)) {
  1798.  
  1799.                 echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#cccccc\" style=\"background-color: transparent;\">";
  1800.                 echo "<tr><td width=\"$maj_wmain\"><div class=\"panel_wrapper\"><div class=\"panel_title\">Oops!</div>";
  1801.        
  1802.                 echo "<div class=\"panel_body\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"4\"><tr>";
  1803.                 echo "<td valign=\"middle\"><img src=\"images/oops.png\" width=\"36\" height=\"36\" border=\"0\"></td><td valign=\"middle\">";
  1804.  
  1805.                 echo "Login required. Entries are off limits without proper credentials.";
  1806.  
  1807.                 echo "</td></tr></table></div></div>";
  1808.                 echo "</td></tr></table>";
  1809.         }
  1810. }
  1811.  
  1812. $maj_start = $_REQUEST['start'];
  1813.  
  1814. if (!isset($_REQUEST['start']) or empty($_REQUEST['start'])) {
  1815.         $maj_start = 0;
  1816. }
  1817.  
  1818. $maj_end = $maj_start + $maj_increase;
  1819.    
  1820. $maj_disp = array_slice($maj_items,$maj_start,$maj_increase);
  1821.  
  1822. foreach ($maj_disp as $maj_d) {
  1823.  
  1824.         echo "\t<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#cccccc\" style=\"background-color: transparent;\"><tr><td width=\"$maj_wmain\">\r\n\r\n\t";
  1825.  
  1826.         if (file_exists("$maj_data_directory/items/$maj_d/border.txt")) {
  1827.                 $maj_d_border = file_get_contents("$maj_data_directory/items/$maj_d/border.txt");
  1828.         }
  1829.         else {
  1830.                 if (isset($maj_d_border)) {
  1831.                         unset($maj_d_border);
  1832.                 }
  1833.         }
  1834.  
  1835.         if (file_exists("$maj_data_directory/items/$maj_d/bgcolor-t.txt")) {
  1836.                 $maj_d_bgcolor_t = file_get_contents("$maj_data_directory/items/$maj_d/bgcolor-t.txt");
  1837.         }
  1838.         else {
  1839.                 if (isset($maj_d_bgcolor_t)) {
  1840.                         unset($maj_d_bgcolor_t);
  1841.                 }
  1842.         }
  1843.  
  1844.         if (file_exists("$maj_data_directory/items/$maj_d/bgcolor-b.txt")) {
  1845.                 $maj_d_bgcolor_b = file_get_contents("$maj_data_directory/items/$maj_d/bgcolor-b.txt");
  1846.         }
  1847.         else {
  1848.                 if (isset($maj_d_bgcolor_b)) {
  1849.                         unset($maj_d_bgcolor_b);
  1850.                 }
  1851.         }
  1852.  
  1853.         if (file_exists("$maj_data_directory/items/$maj_d/bgcolor-c.txt")) {
  1854.                 $maj_d_bgcolor_c = file_get_contents("$maj_data_directory/items/$maj_d/bgcolor-c.txt");
  1855.         }
  1856.         else {
  1857.                 if (isset($maj_d_bgcolor_c)) {
  1858.                         unset($maj_d_bgcolor_c);
  1859.                 }
  1860.         }
  1861.  
  1862.         if (file_exists("$maj_data_directory/items/$maj_d/bgcolor-f.txt")) {
  1863.                 $maj_d_bgcolor_f = file_get_contents("$maj_data_directory/items/$maj_d/bgcolor-f.txt");
  1864.         }
  1865.         else {
  1866.                 if (isset($maj_d_bgcolor_f)) {
  1867.                         unset($maj_d_bgcolor_f);
  1868.                 }
  1869.         }
  1870.  
  1871.         if (file_exists("$maj_data_directory/items/$maj_d/text-t.txt")) {
  1872.                 $maj_d_text_t = file_get_contents("$maj_data_directory/items/$maj_d/text-t.txt");
  1873.         }
  1874.         else {
  1875.                 if (isset($maj_d_text_t)) {
  1876.                         unset($maj_d_text_t);
  1877.                 }
  1878.         }
  1879.  
  1880.         if (file_exists("$maj_data_directory/items/$maj_d/text-b.txt")) {
  1881.                 $maj_d_text_b = file_get_contents("$maj_data_directory/items/$maj_d/text-b.txt");
  1882.         }
  1883.         else {
  1884.                 if (isset($maj_d_text_b)) {
  1885.                         unset($maj_d_text_b);
  1886.                 }
  1887.         }
  1888.  
  1889.         if (file_exists("$maj_data_directory/items/$maj_d/text-c.txt")) {
  1890.                 $maj_d_text_c = file_get_contents("$maj_data_directory/items/$maj_d/text-c.txt");
  1891.         }
  1892.         else {
  1893.                 if (isset($maj_d_text_c)) {
  1894.                         unset($maj_d_text_c);
  1895.                 }
  1896.         }
  1897.  
  1898.         if (file_exists("$maj_data_directory/items/$maj_d/text-f.txt")) {
  1899.                 $maj_d_text_f = file_get_contents("$maj_data_directory/items/$maj_d/text-f.txt");
  1900.         }
  1901.         else {
  1902.                 if (isset($maj_d_text_f)) {
  1903.                         unset($maj_d_text_f);
  1904.                 }
  1905.         }
  1906.  
  1907.         echo "\t<div class=\"panel_wrapper\">\r\n\r\n\t\t\t";
  1908.  
  1909.         if (!file_exists("$maj_data_directory/items/$maj_d/xtitle.txt") or (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username))) {
  1910.        
  1911.                 echo '<div class="panel_title"';
  1912.  
  1913.                 if (isset($maj_d_border) or isset($maj_d_bgcolor_t) or isset($maj_d_text_t)) {
  1914.                         echo ' style="';
  1915.                 }
  1916.  
  1917.                 if (isset($maj_d_bgcolor_t)) {
  1918.                         echo "background-color: $maj_d_bgcolor_t;";
  1919.                 }
  1920.  
  1921.                 if (isset($maj_d_text_t)) {
  1922.                         echo "color: $maj_d_text_t;";
  1923.                 }
  1924.  
  1925.                 if (isset($maj_d_border)) {
  1926.                         echo "border-color: $maj_d_border;";
  1927.                 }
  1928.  
  1929.                 if (isset($maj_d_border) or isset($maj_d_bgcolor_t) or isset($maj_d_text_t)) {
  1930.                         echo '"';
  1931.                 }
  1932.  
  1933.                 echo '>';
  1934.  
  1935.                 readfile("$maj_data_directory/items/$maj_d/title.txt");
  1936.  
  1937.                 if (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username") and file_exists("$maj_data_directory/wiki.txt") and (file_exists("$maj_data_directory/items/$maj_d/edit.txt") or (file_get_contents("$maj_data_directory/items/$maj_d/author.txt") == $maj_logged_in_username)) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username/bb-rw.txt") and !file_exists("$maj_data_directory/items/$maj_d/passwd.txt") and !file_exists("$maj_data_directory/items/$maj_d/lock.txt")) {
  1938.  
  1939.                         if (file_exists("$maj_data_directory/items/$maj_d/wiki/delta") and (count(glob("$maj_data_directory/items/$maj_d/wiki/delta/*")) > 0)) {
  1940.                                 echo "<a href=\"wiki.php?entry=$maj_d\">";
  1941.                                 echo "<img src=\"images/widget.back.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"revisions\">";
  1942.                                 echo "</a>";
  1943.                         }
  1944.  
  1945.                         if (!file_exists("$maj_data_directory/items/$maj_d/lock.txt")) {
  1946.                                 echo "<a href=\"edit.php?entry=$maj_d\"><img src=\"images/widget.edit.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"edit entry\"></a>";
  1947.                         }
  1948.                 }
  1949.  
  1950.                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  1951.  
  1952.                         echo "<a href=\"del.php?entry=$maj_d\"><img src=\"images/widget.del.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"delete entry\"></a>";
  1953.  
  1954.                         if (!file_exists("$maj_data_directory/items/$maj_d/private.txt") and !file_exists("$maj_data_directory/items/$maj_d/categories") and file_exists("$maj_data_directory/bb.txt") and (count(glob("$maj_data_directory/items/$maj_d/comments/live/*")) === 0) and (count(glob("$maj_data_directory/items/$maj_d/comments/pending/*")) === 0)) {
  1955.                                 echo "<a href=\"move.php?entry=$maj_d\"><img src=\"images/widget.move.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"move to comment\"></a>";
  1956.                         }
  1957.  
  1958.                         if (file_exists("$maj_data_directory/items/$maj_d/wiki/delta") and (count(glob("$maj_data_directory/items/$maj_d/wiki/delta/*")) > 0)) {
  1959.                                 echo "<a href=\"wiki.php?entry=$maj_d\"><img src=\"images/widget.back.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"revisions\"></a>";
  1960.                         }
  1961.  
  1962.                         echo "<a href=\"edit.php?entry=$maj_d\"><img src=\"images/widget.edit.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"edit entry\"></a>";
  1963.  
  1964.                         if (file_exists("$maj_data_directory/items/$maj_d/passwd.txt")) {
  1965.                                 echo "<img src=\"images/widget.protected.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"protected entry\">";
  1966.                         }
  1967.  
  1968.                         if (file_exists("$maj_data_directory/items/$maj_d/private.txt")) {
  1969.                                 echo "<img src=\"images/widget.private.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"private entry\">";
  1970.                         }
  1971.  
  1972.                         if (file_exists("$maj_data_directory/items/$maj_d/member.txt")) {
  1973.                                 echo "<img src=\"images/widget.member.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"members-only entry\">";
  1974.                         }
  1975.  
  1976.                         if (file_exists("$maj_data_directory/items/$maj_d/cat.txt")) {
  1977.                                 echo "<img src=\"images/widget.cat.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"always displayed\">";
  1978.                         }
  1979.  
  1980.                         if (file_exists("$maj_data_directory/items/$maj_d/categories/$maj_req_category")) {
  1981.  
  1982.                                 $maj_private_categories = "0";
  1983.                                 $maj_book_categories = "0";
  1984.        
  1985.                                 if (file_exists("$maj_data_directory/items/$maj_d/categories")) {
  1986.                                
  1987.                                         if ($maj_dh_read_cat_dir = opendir("$maj_data_directory/items/$maj_d/categories")) {
  1988.                                
  1989.                                                 while (($maj_read_cat_dir = readdir($maj_dh_read_cat_dir)) !== false) {
  1990.                                
  1991.                                                         if ($maj_read_cat_dir != "." && $maj_read_cat_dir != "..") {
  1992.                                
  1993.                                                                 if (file_exists("$maj_data_directory/categories/$maj_read_cat_dir/private.txt")) {
  1994.                                                                         $maj_private_categories = $maj_private_categories + 1;
  1995.                                                                 }
  1996.  
  1997.                                                                 if (file_exists("$maj_data_directory/categories/$maj_read_cat_dir/book.txt")) {
  1998.                                                                         $maj_book_categories = $maj_book_categories + 1;
  1999.                                                                 }
  2000.                                                         }
  2001.                                                 }
  2002.                                                 closedir($maj_dh_read_cat_dir);
  2003.                                         }
  2004.                                 }
  2005.  
  2006.                                 if ($maj_private_categories > 0) {
  2007.                                         echo "<img src=\"images/widget.hidden.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"private category\">";
  2008.                                 }
  2009.  
  2010.                                 if (file_exists("$maj_data_directory/nocat.txt")) {
  2011.                                         echo "<img src=\"images/widget.isolated.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"isolated category\">";
  2012.                                 }
  2013.  
  2014.                                 if ($maj_book_categories > 0) {
  2015.                                         echo "<img src=\"images/widget.booked.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"book category\">";
  2016.                                 }
  2017.  
  2018.                                 echo "<img src=\"images/widget.filed.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"filed\">";
  2019.                         }
  2020.  
  2021.                 }
  2022.  
  2023.                 echo "</div>\r\n\r\n";
  2024.         }      
  2025.        
  2026.         echo "\t\t\t<div class=\"panel_entry_body\"";
  2027.  
  2028.         if (isset($maj_d_border) or isset($maj_d_bgcolor_b) or isset($maj_d_text_b)) {
  2029.                 echo ' style="';
  2030.         }
  2031.  
  2032.         if (isset($maj_d_bgcolor_b)) {
  2033.                 echo "background-color: $maj_d_bgcolor_b;";
  2034.         }
  2035.  
  2036.         if (isset($maj_d_text_b)) {
  2037.                 echo "color: $maj_d_text_b;";
  2038.         }
  2039.  
  2040.         if (isset($maj_d_border)) {
  2041.                 echo "border-color: $maj_d_border;";
  2042.         }
  2043.  
  2044.         if (isset($maj_d_border) or isset($maj_d_bgcolor_b) or isset($maj_d_text_b)) {
  2045.                 echo '"';
  2046.         }
  2047.  
  2048.         echo '>';
  2049.  
  2050.         echo "\r\n\t\t\t\t<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
  2051.  
  2052.         if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/avatar.txt") and file_exists("$maj_data_directory/items/$maj_d/author.txt") and !file_exists("$maj_data_directory/items/$maj_d/xavatar.txt")) {
  2053.  
  2054.                 echo "<td width=\"80\" valign=\"top\">";
  2055.  
  2056.                 $maj_author = file_get_contents("$maj_data_directory/items/$maj_d/author.txt");
  2057.  
  2058.                 show_maj_avatar_image($maj_author,80);
  2059.  
  2060.                 if ($maj_dh_author_posts = opendir("$maj_data_directory/items")) {
  2061.  
  2062.                         while (($maj_author_post = readdir($maj_dh_author_posts)) !== false) {
  2063.  
  2064.                                 if ($maj_author_post != "." && $maj_author_post != "..") {
  2065.  
  2066.                                         if (file_exists("$maj_data_directory/items/$maj_author_post/private.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  2067.                                                 continue;
  2068.                                         }
  2069.  
  2070.                                         $maj_private_categories = "0";
  2071.        
  2072.                                         if (file_exists("$maj_data_directory/items/$maj_author_post/categories")) {
  2073.                                
  2074.                                                 if ($maj_dh_entry_categories_posts = opendir("$maj_data_directory/items/$maj_author_post/categories")) {
  2075.                                
  2076.                                                         while (($maj_entry_category_posts = readdir($maj_dh_entry_categories_posts)) !== false) {
  2077.                                
  2078.                                                                 if ($maj_entry_category_posts != "." && $maj_entry_category_posts != "..") {
  2079.                                
  2080.                                                                         if (file_exists("$maj_data_directory/categories/$maj_entry_category_posts/private.txt")) {
  2081.                                                                                 $maj_private_categories = $maj_private_categories + 1;
  2082.                                                                         }
  2083.                                                                 }
  2084.                                                         }
  2085.                                                         closedir($maj_dh_entry_categories_posts);
  2086.                                                 }
  2087.                                         }
  2088.        
  2089.                                         if (($maj_private_categories > 0) and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and !file_exists("$maj_data_directory/items/$maj_author_post/cat.txt")) {
  2090.                                                 continue;
  2091.                                         }
  2092.  
  2093.                                         if (file_exists("$maj_data_directory/members/active/$maj_author") and file_exists("$maj_data_directory/bb.txt")) {
  2094.  
  2095.                                                 if (file_exists("$maj_data_directory/items/$maj_author_post/author.txt") and (file_get_contents("$maj_data_directory/items/$maj_author_post/author.txt") == $maj_author)) {
  2096.                                                         $maj_items_posts[] = $maj_author_post;
  2097.                                                 }
  2098.                                         }
  2099.                                         elseif (!file_exists("$maj_data_directory/members/active/$maj_author") and ($maj_admin_username == $maj_author) and file_exists("$maj_data_directory/bb.txt")) {
  2100.  
  2101.                                                 if (file_exists("$maj_data_directory/items/$maj_author_post/author.txt") and (file_get_contents("$maj_data_directory/items/$maj_author_post/author.txt") == $maj_author)) {
  2102.                                                         $maj_items_posts[] = $maj_author_post;
  2103.                                                 }
  2104.                                         }
  2105.                                 }
  2106.                         }
  2107.                         closedir($maj_dh_author_posts);
  2108.                 }
  2109.  
  2110.                 $maj_posts = count($maj_items_posts);
  2111.  
  2112.                 if ($maj_posts == 1) {
  2113.                         echo "$maj_posts post";
  2114.                 }
  2115.  
  2116.                 if ($maj_posts > 1) {
  2117.                         echo "$maj_posts posts";
  2118.                 }
  2119.  
  2120.                 unset($maj_items_posts);
  2121.  
  2122.                 echo "</td><td width=\"5\" valign=\"top\"><div style=\"width: 5px;\"></div></td>";
  2123.         }
  2124.  
  2125.         if (file_exists("$maj_data_directory/avatar.txt") and file_exists("$maj_data_directory/items/$maj_d/xavatar.txt")) {
  2126.                 echo "<td width=\"590\" valign=\"top\">";
  2127.         }
  2128.         else { 
  2129.                 echo "<td width=\"510\" valign=\"top\">";
  2130.         }
  2131.  
  2132.         if (file_exists("$maj_data_directory/items/$maj_d/passwd.txt")) {
  2133.                 $maj_passwd = file_get_contents("$maj_data_directory/items/$maj_d/passwd.txt");
  2134.         }
  2135.  
  2136.         if (isset($_REQUEST['passwd']) and !empty($_REQUEST['passwd'])) {
  2137.                 $maj_crypt_passwd = sha1($_REQUEST['passwd']);
  2138.                 $maj_crypt_passwd = md5($maj_crypt_passwd);
  2139.                 $maj_crypt_passwd = crypt($maj_crypt_passwd,$maj_crypt_passwd);
  2140.         }
  2141.  
  2142.  
  2143.         if (!file_exists("$maj_data_directory/items/$maj_d/xdate.txt") or (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username))) {
  2144.  
  2145.                 echo "<font style=\"font-size: $maj_font_Spx; color: #999999;\">";
  2146.  
  2147.                 if ((file_exists("$maj_data_directory/items/$maj_d/author.txt") and (file_exists("$maj_data_directory/bb.txt") and !file_exists("$maj_data_directory/avatar.txt")) or (file_exists("$maj_data_directory/items/$maj_d/author.txt") and (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username) and !file_exists("$maj_data_directory/avatar.txt"))))) {
  2148.  
  2149.                         $maj_xavatar_author = file_get_contents("$maj_data_directory/items/$maj_d/author.txt");
  2150.  
  2151.                         if (!file_exists("$maj_data_directory/items/$maj_d/xauthor.txt") or (file_exists("$maj_data_directory/items/$maj_d/xauthor.txt") and ($maj_logged_in_username == $maj_admin_username))) {
  2152.                                 echo "$maj_xavatar_author - ";
  2153.                         }
  2154.                 }
  2155.  
  2156.                 entry2date($maj_d);
  2157.  
  2158.                 if ((isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) or file_exists("$maj_data_directory/items/$maj_d/lastmod.txt")) {
  2159.  
  2160.                         if (file_exists("$maj_data_directory/items/$maj_d/revisions.txt")) {
  2161.                                 echo " (Revision ";
  2162.                                 readfile("$maj_data_directory/items/$maj_d/revisions.txt");
  2163.                                 echo " - ";
  2164.                                 echo date("l, M j, Y, g:i A",filemtime("$maj_data_directory/items/$maj_d/body.txt"));
  2165.                                 echo ")";
  2166.                         }
  2167.                 }
  2168.  
  2169.                 echo "</font><div style=\"height: {$maj_wspace}px;\"></div>";
  2170.         }
  2171.        
  2172.        
  2173.         if (isset($maj_d_text_b)) {
  2174.                 echo "<font style=\"color: $maj_d_text_b;\">";
  2175.         }
  2176.  
  2177.         if (file_exists("$maj_data_directory/items/$maj_d/passwd.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and (!isset($_REQUEST['passwd']) or ($maj_crypt_passwd != $maj_passwd))) {
  2178.                 echo "This entry is password protected. If you know the magic word, click <a href=\"passwd.php?entry=$maj_d\">here</a> to enter it.";
  2179.         }
  2180.         else {
  2181.                 $maj_entry_body = file_get_contents("$maj_data_directory/items/$maj_d/body.txt");
  2182.  
  2183.                 if (file_exists("$maj_data_directory/pf.txt") and file_exists("$maj_data_directory/pf-badwords.txt") and (!isset($maj_logged_in_username) or empty($maj_logged_in_username) or (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username)))) {
  2184.  
  2185.                         $maj_badwords = file_get_contents("$maj_data_directory/pf-badwords.txt");
  2186.  
  2187.                         if (file_exists("$maj_data_directory/pf-censor.txt")) {
  2188.                                 $maj_censor = file_get_contents("$maj_data_directory/pf-censor.txt");
  2189.                         }
  2190.                         else {
  2191.                                 $maj_censor = "[expletive]";
  2192.                         }
  2193.                         $maj_entry_body = preg_replace("/\b($maj_badwords)\b/i",$maj_censor,$maj_entry_body);
  2194.                 }
  2195.  
  2196.                 if (file_exists("$maj_data_directory/items/$maj_d/maxlines.txt") and (!isset($maj_req_entry) or empty($maj_req_entry))) {
  2197.  
  2198.                         $maj_entry_shorten = file_get_contents("$maj_data_directory/items/$maj_d/maxlines.txt");
  2199.  
  2200.                         $maj_entry_lines = explode("\r",$maj_entry_body);
  2201.  
  2202.                         if (count($maj_entry_lines) > $maj_entry_shorten) {
  2203.                                 $maj_entry_body = implode("",array_slice($maj_entry_lines,0,$maj_entry_shorten));
  2204.                                 $maj_entry_body = $maj_entry_body . "<br><br><a href=\"index.php?entry=$maj_d\">read more</a>";
  2205.                         }
  2206.                 }
  2207.  
  2208.                 echo "$maj_entry_body";
  2209.         }
  2210.  
  2211.         if (($maj_admin_username == $maj_author) and file_exists("$maj_data_directory/sig.txt") and file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/bb-sig.txt")) {
  2212.                 $maj_sig = file_get_contents("$maj_data_directory/sig.txt");
  2213.                 echo "<br><br>--<br>$maj_sig";
  2214.         }
  2215.         elseif (file_exists("$maj_data_directory/members/active/$maj_author/sig.txt") and file_exists("$maj_data_directory/bb.txt")  and file_exists("$maj_data_directory/bb-sig.txt")) {
  2216.                 $maj_sig = file_get_contents("$maj_data_directory/members/active/$maj_author/sig.txt");
  2217.                 echo "<br><br>--<br>$maj_sig";
  2218.         }
  2219.  
  2220.         if (file_exists("$maj_data_directory/fb.txt") and file_exists("$maj_data_directory/items/$maj_d/fb.txt")) {
  2221.        
  2222.                 if (isset($_SERVER['HTTPS'])) {
  2223.                         $entry_url = "https://" . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['PHP_SELF']), "/\\") . "/index.php?entry=$maj_d";
  2224.                 }
  2225.                 else {
  2226.                         $entry_url = "http://" . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['PHP_SELF']), "/\\") . "/index.php?entry=$maj_d";
  2227.                 }
  2228.  
  2229.                 //$entry_url = rawurlencode($entry_url);
  2230.  
  2231.                                 echo "<br><br><div id=\"fb-root\"></div><script src=\"http://connect.facebook.net/en_US/all.js#xfbml=1\"></script><fb:like href=\"$entry_url\" send=\"false\" width=\"510\" show_faces=\"false\" font=\"\"></fb:like>";
  2232.         }
  2233.  
  2234.         if (isset($maj_d_text_b)) {
  2235.                 echo "</font>";
  2236.         }
  2237.  
  2238.         echo "</td></tr></table>";
  2239.  
  2240.         echo "\r\n\t\t\t</div>";
  2241.  
  2242.         if (file_exists("$maj_data_directory/items/$maj_d/categories") and ($maj_logged_in_username == $maj_admin_username)) {
  2243.                
  2244.                 if ($maj_dh_entry_categories = opendir("$maj_data_directory/items/$maj_d/categories")) {
  2245.                
  2246.                         while (($maj_entry_category = readdir($maj_dh_entry_categories)) !== false) {
  2247.                
  2248.                                 if ($maj_entry_category != "." && $maj_entry_category != "..") {
  2249.                                         $maj_entry_categories[] = $maj_entry_category;
  2250.                                 }
  2251.                         }
  2252.                         closedir($maj_dh_entry_categories);
  2253.                 }
  2254.  
  2255.                 sort($maj_entry_categories);
  2256.                 reset($maj_entry_categories);
  2257.  
  2258.                 if (count($maj_entry_categories) > 0) {
  2259.  
  2260.                         if (count($maj_entry_categories) > 1) {
  2261.                                 $maj_category_list = "categories";
  2262.                         }
  2263.                         else {
  2264.                                 $maj_category_list = "category";
  2265.                         }
  2266.  
  2267.                         foreach ($maj_entry_categories as $maj_filed_under) {
  2268.                                 $maj_category_list = $maj_category_list . " | <a href=\"index.php?category=$maj_filed_under\" class=\"status\">$maj_filed_under</a>";
  2269.                         }
  2270.  
  2271.                         echo "\r\n\r\n\t\t\t<div class=\"panel_category\"";
  2272.  
  2273.                         if (isset($maj_d_border) or isset($maj_d_bgcolor_c) or isset($maj_d_text_c)) {
  2274.                                 echo ' style="';
  2275.                         }
  2276.  
  2277.                         if (isset($maj_d_bgcolor_c)) {
  2278.                                 echo "background-color: $maj_d_bgcolor_c;";
  2279.                         }
  2280.  
  2281.                         if (isset($maj_d_text_c)) {
  2282.                                 echo "color: $maj_d_text_c;";
  2283.                         }
  2284.  
  2285.                         if (isset($maj_d_border)) {
  2286.                                 echo "border-color: $maj_d_border;";
  2287.                         }
  2288.  
  2289.                         if (isset($maj_d_border) or isset($maj_d_bgcolor_c) or isset($maj_d_text_c)) {
  2290.                                 echo '"';
  2291.                         }
  2292.  
  2293.                         echo ">$maj_category_list</div>";
  2294.                 }
  2295.                 unset($maj_entry_categories);
  2296.         }
  2297.  
  2298.         echo "\r\n\r\n\t\t\t<div class=\"panel_footer\"";
  2299.  
  2300.         if (isset($maj_d_border) or isset($maj_d_bgcolor_f) or isset($maj_d_text_f)) {
  2301.                 echo ' style="';
  2302.         }
  2303.  
  2304.         if (isset($maj_d_bgcolor_f)) {
  2305.                 echo "background-color: $maj_d_bgcolor_f;";
  2306.         }
  2307.  
  2308.         if (isset($maj_d_text_f)) {
  2309.                 echo "color: $maj_d_text_f;";
  2310.         }
  2311.  
  2312.         if (isset($maj_d_border)) {
  2313.                 echo "border-color: $maj_d_border;";
  2314.         }
  2315.  
  2316.         if (isset($maj_d_border) or isset($maj_d_bgcolor_f) or isset($maj_d_text_f)) {
  2317.                 echo '"';
  2318.         }
  2319.  
  2320.         echo ">\r\n\t\t\t\t";
  2321.  
  2322.         if (!file_exists("$maj_data_directory/nocomment.txt") or (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) or (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) or (file_exists("$maj_data_directory/memcomment.txt") and isset($maj_logged_in_username)) or file_exists("$maj_data_directory/items/$maj_d/ucomment.txt")) {
  2323.  
  2324.                 if (!file_exists("$maj_data_directory/items/$maj_d/comments/live")) {
  2325.                         echo "<a href=\"index.php?entry=$maj_d&show=comments\" class=\"status\">add comment</a>";
  2326.                 }
  2327.                 else {
  2328.                         if ($maj_dh_comments = opendir("$maj_data_directory/items/$maj_d/comments/live")) {
  2329.        
  2330.                                 while (($maj_live_comment = readdir($maj_dh_comments)) !== false) {
  2331.        
  2332.                                         if ($maj_live_comment != "." && $maj_live_comment != "..") {
  2333.                                                 $maj_live_comments[] = $maj_live_comment;
  2334.                                         }
  2335.                                 }
  2336.                                 closedir($maj_dh_comments);
  2337.                         }
  2338.  
  2339.                         $maj_count_live_comments = count($maj_live_comments);
  2340.  
  2341.                         echo "<a href=\"index.php?entry=$maj_d&show=comments\" class=\"status\">";
  2342.  
  2343.                         if ($maj_count_live_comments == 1) {
  2344.                                 echo "$maj_count_live_comments comment";
  2345.                         }
  2346.                         elseif ($maj_count_live_comments < 1) {
  2347.                                 echo "add comment";
  2348.                         }
  2349.                         else {
  2350.                                 echo "$maj_count_live_comments comments";
  2351.                         }
  2352.                         echo "</a>";
  2353.  
  2354.                         unset($maj_live_comments);
  2355.                 }
  2356.         }
  2357.         else {
  2358.                 echo "<a href=\"index.php?entry=$maj_d\" class=\"status\">permalink</a>";
  2359.         }
  2360.  
  2361.         if (file_exists("$maj_data_directory/items/$maj_d/views.txt")) {
  2362.  
  2363.                 $maj_views_value = file_get_contents("$maj_data_directory/items/$maj_d/views.txt");
  2364.  
  2365.                 if ($maj_views_value == 1) {
  2366.                         echo " ($maj_views_value view) ";
  2367.                 }
  2368.                 elseif ($maj_views_value > 1) {
  2369.                         echo " ($maj_views_value views) ";
  2370.                 }
  2371.                 else {
  2372.                         echo " ";
  2373.                 }
  2374.         }
  2375.  
  2376.         if (!file_exists("images/$maj_d/album")) {
  2377.                 echo " ";
  2378.         }
  2379.         else {
  2380.                 if ($maj_dh_album = opendir("images/$maj_d/album")) {
  2381.  
  2382.                         while (($maj_entry_album = readdir($maj_dh_album)) !== false) {
  2383.  
  2384.                                 if ($maj_entry_album != "." && $maj_entry_album != "..") {
  2385.                                         $maj_items_album[] = $maj_entry_album;
  2386.                                 }
  2387.                         }
  2388.                         closedir($maj_dh_album);
  2389.                 }
  2390.  
  2391.                 $maj_album = count($maj_items_album);
  2392.  
  2393.                 echo " | <a href=\"index.php?entry=$maj_d&show=album\" class=\"status\">";
  2394.  
  2395.                 if ($maj_album == 1) {
  2396.                         echo "$maj_album image";
  2397.                 }
  2398.                 elseif ($maj_album < 1) {
  2399.                         echo "album";
  2400.                 }
  2401.                 else {
  2402.                         echo "$maj_album images";
  2403.                 }
  2404.  
  2405.                 echo "</a>";
  2406.  
  2407.                 unset($maj_items_album);
  2408.         }
  2409.  
  2410.         if (file_exists("images/$maj_d/album") and isset($maj_req_entry) and !empty($maj_req_entry) and isset($maj_req_show) and !empty($maj_req_show) and ($maj_req_show == album)) {
  2411.  
  2412.                 if (!file_exists("$maj_data_directory/items/$maj_d/album")) {
  2413.                         mkdir("$maj_data_directory/items/$maj_d/album");
  2414.                 }
  2415.  
  2416.                 if ((!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  2417.  
  2418.                         $maj_album_views_value = file_get_contents("$maj_data_directory/items/$maj_d/album/views.txt");
  2419.  
  2420.                         $maj_album_views_value = $maj_album_views_value + 1;
  2421.  
  2422.                         $maj_fp_album_views_txt = fopen("$maj_data_directory/items/$maj_d/album/views.txt","w");
  2423.                         fwrite($maj_fp_album_views_txt,$maj_album_views_value);
  2424.                         fclose($maj_fp_album_views_txt);
  2425.                 }
  2426.         }
  2427.  
  2428.         $maj_album_views_value = file_get_contents("$maj_data_directory/items/$maj_d/album/views.txt");
  2429.  
  2430.         if ($maj_album_views_value == 1) {
  2431.                 echo " ($maj_album_views_value view) ";
  2432.         }
  2433.         elseif ($maj_album_views_value > 1) {
  2434.                 echo " ($maj_album_views_value views) ";
  2435.         }
  2436.         else {
  2437.                 echo " ";
  2438.         }
  2439.  
  2440.         if (file_exists("media/$maj_d/videos")) {
  2441.  
  2442.                 if (isset($maj_req_entry) and !empty($maj_req_entry) and isset($maj_req_show) and !empty($maj_req_show) and ($maj_req_show == videos)) {
  2443.                
  2444.                         if (!file_exists("$maj_data_directory/items/$maj_d/media")) {
  2445.                                 mkdir("$maj_data_directory/items/$maj_d/media");
  2446.                         }
  2447.  
  2448.                         if (!file_exists("$maj_data_directory/items/$maj_d/media/videos")) {
  2449.                                 mkdir("$maj_data_directory/items/$maj_d/media/videos");
  2450.                         }
  2451.                        
  2452.                         if ((!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  2453.  
  2454.                                 if (!file_exists("$maj_data_directory/items/$maj_d/media/videos/views.txt")) {
  2455.                                         $maj_videos_views_value = 0;
  2456.                                 }
  2457.                                 else {
  2458.                                         $maj_videos_views_value = file_get_contents("$maj_data_directory/items/$maj_d/media/videos/views.txt");
  2459.                                 }
  2460.                                
  2461.                                 $maj_videos_views_value = $maj_videos_views_value + 1;
  2462.  
  2463.                                 $maj_fp_videos_views_txt = fopen("$maj_data_directory/items/$maj_d/media/videos/views.txt","w");
  2464.                                 fwrite($maj_fp_videos_views_txt,$maj_videos_views_value);
  2465.                                 fclose($maj_fp_videos_views_txt);
  2466.                         }
  2467.                 }
  2468.        
  2469.                 // remove the code below once a suitable clean-up procedure is created in the video uploader
  2470.                 $maj_videos = glob("media/$maj_d/videos/*");
  2471.        
  2472.                 foreach ($maj_videos as $maj_video) {
  2473.                        
  2474.                         if (!preg_match("/\.mp4$/i",$maj_video) and !preg_match("/\.ogv$/i",$maj_video) and !preg_match("/\.webm$/i",$maj_video)) {
  2475.                                 unlink("$maj_video");
  2476.                         }
  2477.                        
  2478.                         unset($maj_video);
  2479.                 }
  2480.                        
  2481.                 unset($maj_videos);
  2482.                 // remove the code above once a suitable clean-up procedure is created in the video uploader
  2483.        
  2484.                 $maj_videos = glob("media/$maj_d/videos/*");
  2485.                 $maj_videos = preg_replace("/\.mp4$/i","",$maj_videos);
  2486.                 $maj_videos = preg_replace("/\.ogv$/i","",$maj_videos);
  2487.                 $maj_videos = preg_replace("/\.webm$/i","",$maj_videos);
  2488.                 $maj_videos = array_unique($maj_videos);
  2489.        
  2490.                 sort($maj_videos);
  2491.                
  2492.                 $maj_videos_count = count($maj_videos);
  2493.                
  2494.                 if ($maj_videos_count > 0) {
  2495.                
  2496.                         echo " | <a href=\"index.php?entry=$maj_d&show=videos\" class=\"status\">$maj_videos_count ";
  2497.                        
  2498.                         if ($maj_videos_count == 1) {
  2499.                                 echo "video";
  2500.                         }
  2501.                         else {
  2502.                                 echo "videos";
  2503.                         }
  2504.                        
  2505.                         echo "</a>";
  2506.                        
  2507.                         if (file_exists("$maj_data_directory/items/$maj_d/media/videos/views.txt")) {
  2508.                        
  2509.                                 $maj_videos_views = file_get_contents("$maj_data_directory/items/$maj_d/media/videos/views.txt");
  2510.                        
  2511.                                 if ($maj_videos_views > 0) {
  2512.  
  2513.                                         echo " ($maj_videos_views ";
  2514.  
  2515.                                         if ($maj_videos_views == 1) {
  2516.                                                 echo "view";
  2517.                                         }
  2518.                                         else {
  2519.                                                 echo "views";
  2520.                                         }                                      
  2521.                                         echo ")";      
  2522.                                 }
  2523.                         }
  2524.                 }
  2525.         }
  2526.  
  2527.         if (!file_exists("$maj_data_directory/items/$maj_d/filedrop/files")) {
  2528.                 echo " ";
  2529.         }
  2530.         else {
  2531.                 if ($maj_dh_filedrop = opendir("$maj_data_directory/items/$maj_d/filedrop/files")) {
  2532.  
  2533.                         while (($maj_dl_file = readdir($maj_dh_filedrop)) !== false) {
  2534.  
  2535.                                 if ($maj_dl_file != "." && $maj_dl_file != "..") {
  2536.                                         $maj_items_filedrop[] = $maj_dl_file;
  2537.                                 }
  2538.                         }
  2539.                         closedir($maj_dh_filedrop);
  2540.                 }
  2541.  
  2542.                 $maj_filedrop = count($maj_items_filedrop);
  2543.  
  2544.                 echo " | <a href=\"index.php?entry=$maj_d&show=filedrop\" class=\"status\">";
  2545.  
  2546.                 if ($maj_filedrop == 1) {
  2547.                         echo "$maj_filedrop file";
  2548.                 }
  2549.                 elseif ($maj_filedrop < 1) {
  2550.                         echo "filedrop";
  2551.                 }
  2552.                 else {
  2553.                         echo "$maj_filedrop files";
  2554.                 }
  2555.  
  2556.                 echo "</a> ";
  2557.  
  2558.                 unset($maj_items_filedrop);
  2559.         }
  2560.  
  2561.         if (isset($maj_req_entry) and !empty($maj_req_entry) and isset($maj_req_show) and !empty($maj_req_show) and ($maj_req_show == filedrop)) {
  2562.  
  2563.                 if (!file_exists("$maj_data_directory/items/$maj_d/filedrop")) {
  2564.                         mkdir("$maj_data_directory/items/$maj_d/filedrop");
  2565.                 }
  2566.  
  2567.                 if (file_exists("$maj_data_directory/items/$maj_d/filedrop/files") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  2568.  
  2569.                         $maj_filedrop_views_value = file_get_contents("$maj_data_directory/items/$maj_d/filedrop/views.txt");
  2570.  
  2571.                         $maj_filedrop_views_value = $maj_filedrop_views_value + 1;
  2572.  
  2573.                         $maj_fp_filedrop_views_txt = fopen("$maj_data_directory/items/$maj_d/filedrop/views.txt","w");
  2574.                         fwrite($maj_fp_filedrop_views_txt,$maj_filedrop_views_value);
  2575.                         fclose($maj_fp_filedrop_views_txt);
  2576.                 }
  2577.         }
  2578.  
  2579.  
  2580.         $maj_filedrop_views_value = file_get_contents("$maj_data_directory/items/$maj_d/filedrop/views.txt");
  2581.  
  2582.         if ($maj_filedrop_views_value == 1) {
  2583.                 echo " ($maj_filedrop_views_value view) ";
  2584.         }
  2585.         elseif ($maj_filedrop_views_value > 1) {
  2586.                 echo " ($maj_filedrop_views_value views) ";
  2587.         }
  2588.         else {
  2589.                 echo " ";
  2590.         }
  2591.  
  2592.         if (!file_exists("$maj_data_directory/nocomment.txt") or (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) or (file_exists("$maj_data_directory/memcomment.txt") and isset($maj_logged_in_username)) or file_exists("$maj_data_directory/items/$maj_d/ucomment.txt")) {
  2593.                 echo "| <a href=\"index.php?entry=$maj_d\" class=\"status\">permalink</a>";
  2594.         }
  2595.  
  2596.         echo "\r\n\t\t\t</div>\r\n\t\t</div>\r\n\r\n";
  2597.  
  2598.         echo "\t</td></tr></table>\r\n\r\n";
  2599.  
  2600.         if ($maj_count_entry_panels > 0) {
  2601.  
  2602.                 foreach ($maj_entry_panels as $maj_entry_panel) {
  2603.  
  2604.                         if (!file_exists("$maj_data_directory/panels/$maj_entry_panel/free.txt")) {
  2605.  
  2606.                                 if (file_exists("$maj_data_directory/panels/$maj_entry_panel/border.txt")) {
  2607.                                         $maj_entry_panel_border = file_get_contents("$maj_data_directory/panels/$maj_entry_panel/border.txt");
  2608.                                 }
  2609.                                 else {
  2610.                                         if (isset($maj_entry_panel_border)) {
  2611.                                                 unset($maj_entry_panel_border);
  2612.                                         }
  2613.                                 }
  2614.  
  2615.                                 if (file_exists("$maj_data_directory/panels/$maj_entry_panel/bgcolor-t.txt")) {
  2616.                                         $maj_entry_panel_bgcolor_t = file_get_contents("$maj_data_directory/panels/$maj_entry_panel/bgcolor-t.txt");
  2617.                                 }
  2618.                                 else {
  2619.                                         if (isset($maj_entry_panel_bgcolor_t)) {
  2620.                                                 unset($maj_entry_panel_bgcolor_t);
  2621.                                         }
  2622.                                 }
  2623.  
  2624.                                 if (file_exists("$maj_data_directory/panels/$maj_entry_panel/bgcolor-c.txt")) {
  2625.                                         $maj_entry_panel_bgcolor_c = file_get_contents("$maj_data_directory/panels/$maj_entry_panel/bgcolor-c.txt");
  2626.                                 }
  2627.                                 else {
  2628.                                         if (isset($maj_entry_panel_bgcolor_c)) {
  2629.                                                 unset($maj_entry_panel_bgcolor_c);
  2630.                                         }
  2631.                                 }
  2632.  
  2633.                                 if (file_exists("$maj_data_directory/panels/$maj_entry_panel/text-t.txt")) {
  2634.                                         $maj_entry_panel_text_t = file_get_contents("$maj_data_directory/panels/$maj_entry_panel/text-t.txt");
  2635.                                 }
  2636.                                 else {
  2637.                                         if (isset($maj_entry_panel_text_t)) {
  2638.                                                 unset($maj_entry_panel_text_t);
  2639.                                         }
  2640.                                 }
  2641.  
  2642.                                 if (file_exists("$maj_data_directory/panels/$maj_entry_panel/text-c.txt")) {
  2643.                                         $maj_entry_panel_text_c = file_get_contents("$maj_data_directory/panels/$maj_entry_panel/text-c.txt");
  2644.                                 }
  2645.                                 else {
  2646.                                         if (isset($maj_entry_panel_text_c)) {
  2647.                                                 unset($maj_entry_panel_text_c);
  2648.                                         }
  2649.                                 }
  2650.  
  2651.                                 echo '<div class="panel_wrapper"><div class="panel_title"';
  2652.  
  2653.                                 if (isset($maj_entry_panel_border) or isset($maj_entry_panel_bgcolor_t) or isset($maj_entry_panel_text_t)) {
  2654.                                         echo ' style="';
  2655.                                 }
  2656.  
  2657.                                 if (isset($maj_entry_panel_bgcolor_t)) {
  2658.                                         echo "background-color: $maj_entry_panel_bgcolor_t;";
  2659.                                 }
  2660.  
  2661.                                 if (isset($maj_entry_panel_text_t)) {
  2662.                                         echo "color: $maj_entry_panel_text_t;";
  2663.                                 }
  2664.  
  2665.                                 if (isset($maj_entry_panel_border)) {
  2666.                                         echo "border-color: $maj_entry_panel_border;";
  2667.                                 }
  2668.  
  2669.                                 if (isset($maj_entry_panel_border) or isset($maj_entry_panel_bgcolor_t) or isset($maj_entry_panel_text_t)) {
  2670.                                         echo '"';
  2671.                                 }
  2672.  
  2673.                                 echo '>';
  2674.  
  2675.                                 readfile("$maj_data_directory/panels/$maj_entry_panel/title.txt");
  2676.  
  2677.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  2678.                                         echo "<a href=\"panels.php#{$maj_entry_panel}\">";
  2679.                                         echo '<img src="images/widget.edit.png" border="0" width="11" height="11" align="right"></a>';
  2680.                                 }
  2681.  
  2682.                                 if (file_exists("$maj_data_directory/panels/$maj_entry_panel/private.txt")) {
  2683.                                         echo '<img src="images/widget.private.png" border="0" width="11" height="11" align="right">';
  2684.                                 }
  2685.  
  2686.                                 echo '</div>';
  2687.  
  2688.                                 echo '<div class="panel_body"';
  2689.  
  2690.                                 if (isset($maj_entry_panel_border) or isset($maj_entry_panel_bgcolor_c) or isset($maj_entry_panel_text_c)) {
  2691.                                         echo ' style="';
  2692.                                 }
  2693.  
  2694.                                 if (isset($maj_entry_panel_bgcolor_c)) {
  2695.                                         echo "background-color: $maj_entry_panel_bgcolor_c;";
  2696.                                 }
  2697.  
  2698.                                 if (isset($maj_entry_panel_text_c)) {
  2699.                                         echo "color: $maj_entry_panel_text_c;";
  2700.                                 }
  2701.  
  2702.                                 if (isset($maj_entry_panel_border)) {
  2703.                                         echo "border-color: $maj_entry_panel_border;";
  2704.                                 }
  2705.  
  2706.                                 if (isset($maj_entry_panel_border) or isset($maj_entry_panel_bgcolor_c) or isset($maj_entry_panel_text_c)) {
  2707.                                         echo '"';
  2708.                                 }
  2709.  
  2710.                                 echo '>';
  2711.                         }
  2712.  
  2713.                         if (file_exists("$maj_data_directory/panels/$maj_entry_panel/free.txt")) {
  2714.                                 echo '<div class=panel_free>';
  2715.                         }
  2716.  
  2717.                         include("$maj_data_directory/panels/$maj_entry_panel/panel.php");
  2718.  
  2719.                         echo '</div></div>';
  2720.  
  2721.                         if (file_exists("$maj_data_directory/panels/$maj_entry_panel/free.txt") and !file_exists("$maj_data_directory/panels/$maj_entry_panel/nomargin.txt")) {
  2722.                                 echo "<div style=\"height: {$maj_wspace}px;\"></div>";
  2723.                         }
  2724.                 }
  2725.         }
  2726.  
  2727.         if (file_exists("images/$maj_d/album") and (file_exists("$maj_data_directory/items/$maj_d/auto-album.txt") or (isset($maj_req_entry) and !empty($maj_req_entry) and isset($maj_req_show) and !empty($maj_req_show) and ($maj_req_show == album)))) {
  2728.  
  2729.                 echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"$maj_wmain\"><tr><td>";
  2730.  
  2731.                 echo '<div class="panel_wrapper"><div class="panel_title">Album';
  2732.                
  2733.                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  2734.                         echo '<a href=del.php?entry=';
  2735.                         echo $maj_d;
  2736.                         echo '&target=album><img src=images/widget.del.png border=0 width=11 height=11 align=right alt="delete album"></a>';
  2737.                 }
  2738.                 echo '</div><div class=panel_body>';
  2739.  
  2740.                 if (file_exists("$maj_data_directory/items/$maj_d/passwd.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and (!isset($_REQUEST['passwd']) or ($maj_crypt_passwd != $maj_passwd))) {
  2741.                         echo "This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$maj_d&show=album>here</a> to enter it.";
  2742.                 }
  2743.                 else {
  2744.                         if (file_exists("images/$maj_d/thumbnails")) {
  2745.                                 if ($maj_dh_album = opendir("images/$maj_d/thumbnails")) {
  2746.                                         while (($maj_thumbnail_album = readdir($maj_dh_album)) !== false) {
  2747.                                                 if ($maj_thumbnail_album != "." && $maj_thumbnail_album != "..") {
  2748.                                                         $maj_current_thumbnail = "images/$maj_d/thumbnails/$maj_thumbnail_album";
  2749.                                                         $maj_parent_image = str_replace("-thumbnail.jpg","",$maj_thumbnail_album);
  2750.                                                         $maj_parent_image = "images/$maj_d/album/$maj_parent_image";
  2751.                                                         if (file_exists($maj_current_thumbnail) and !file_exists($maj_parent_image)) {
  2752.                                                                 unlink($maj_current_thumbnail);
  2753.                                                         }
  2754.                                                 }
  2755.                                         }
  2756.                                 }
  2757.                         }
  2758.  
  2759.                         if (file_exists("$maj_data_directory/items/$maj_d/album/captions")) {
  2760.                                 if ($maj_dh_album = opendir("$maj_data_directory/items/$maj_d/album/captions")) {
  2761.                                         while (($maj_caption_album = readdir($maj_dh_album)) !== false) {
  2762.                                                 if ($maj_caption_album != "." && $maj_caption_album != "..") {
  2763.                                                         $maj_current_caption = "$maj_data_directory/items/$maj_d/album/captions/$maj_caption_album";
  2764.                                                         $maj_parent_image = str_replace(".txt","",$maj_caption_album);
  2765.                                                         $maj_parent_image = "images/$maj_d/album/$maj_parent_image";
  2766.                                                         if (file_exists($maj_current_caption) and !file_exists($maj_parent_image)) {
  2767.                                                                 unlink($maj_current_caption);
  2768.                                                         }
  2769.                                                 }
  2770.                                         }
  2771.                                 }
  2772.                         }
  2773.        
  2774.                         if (file_exists("images/$maj_d/album")) {
  2775.                                 if ($maj_dh_album = opendir("images/$maj_d/album")) {
  2776.                                         while (($maj_entry_album = readdir($maj_dh_album)) !== false) {
  2777.                                                 if ($maj_entry_album != "." && $maj_entry_album != "..") {
  2778.                                                         $maj_sort_album[] = $maj_entry_album;
  2779.                                                 }
  2780.                                         }
  2781.                                 closedir($maj_dh_album);
  2782.                                 }
  2783.        
  2784.                                 sort($maj_sort_album);
  2785.                                 reset($maj_sort_album);
  2786.                                 $maj_count_album_entry = count($maj_sort_album);
  2787.                                
  2788.                                 if ($maj_count_album_entry < 1) {
  2789.                                         rmdirr("images/$maj_d/album");
  2790.                                         rmdirr("images/$maj_d/thumbnails");                            
  2791.                                 }
  2792.                                 else {
  2793.                                         foreach($maj_sort_album as $maj_album_entry) {
  2794.                                                 $maj_current_image = "images/$maj_d/album/$maj_album_entry";
  2795.                                                 $maj_current_image_size = getimagesize($maj_current_image);
  2796.                                                 $maj_current_width = $maj_current_image_size[0];
  2797.                                                 $maj_current_height = $maj_current_image_size[1];
  2798.                                                 $maj_max_width = 95;
  2799.                                                 $maj_max_height = 71;
  2800.  
  2801.                                                 if (($maj_current_width > $maj_max_width) || ($maj_current_height > $maj_max_height)) {  
  2802.  
  2803.                                                         if ($maj_current_height > $maj_current_width) {
  2804.                                                                 $maj_sizefactor = (double) ($maj_max_height / $maj_current_height);
  2805.                                                         }
  2806.                                                         else {
  2807.                                                                 $maj_sizefactor = (double) ($maj_max_width / $maj_current_width) ;
  2808.                                                         }
  2809.  
  2810.                                                         $maj_new_width = (int) ($maj_current_width * $maj_sizefactor);
  2811.                                                         $maj_new_height = (int) ($maj_current_height * $maj_sizefactor);
  2812.                                                 }
  2813.                                                 else {
  2814.                                                         $maj_new_width = $maj_current_width;
  2815.                                                         $maj_new_height = $maj_current_height;
  2816.                                                 }
  2817.        
  2818.                                                 if (!file_exists("images/$maj_d/thumbnails/{$maj_album_entry}-thumbnail.jpg")) {
  2819.        
  2820.                                                         $maj_work_thumb = imagecreatetruecolor($maj_new_width,$maj_new_height);
  2821.                                                         $maj_get_mimetype = image_type_to_mime_type(exif_imagetype($maj_current_image));
  2822.  
  2823.                                                         switch($maj_get_mimetype) {
  2824.                                                                 case "image/jpg":
  2825.                                                                 case "image/jpeg":
  2826.                                                                         $maj_work_image = imagecreatefromjpeg($maj_current_image);
  2827.                                                                         break;
  2828.                                                                 case "image/gif":
  2829.                                                                         $maj_work_image = imagecreatefromgif($maj_current_image);
  2830.                                                                         break;
  2831.                                                                 case "image/png":
  2832.                                                                         $maj_work_image = imagecreatefrompng($maj_current_image);
  2833.                                                                         break;
  2834.                                                         }
  2835.        
  2836.                                                         imagecopyresampled($maj_work_thumb,$maj_work_image,0,0,0,0,$maj_new_width,$maj_new_height,$maj_current_width,$maj_current_height);
  2837.        
  2838.                                                         if (!file_exists("images/$maj_d/thumbnails")) {
  2839.                                                                 mkdir("images/$maj_d/thumbnails");
  2840.                                                         }
  2841.        
  2842.                                                         imagejpeg($maj_work_thumb,"images/$maj_d/thumbnails/{$maj_album_entry}-thumbnail.jpg",80);
  2843.  
  2844.                                                         imagedestroy($maj_work_thumb);
  2845.                                                         imagedestroy($maj_work_image);
  2846.                                                 }
  2847.  
  2848.                                                 echo "<a href=\"album.php?entry=$maj_d&show=$maj_album_entry\">";
  2849.  
  2850.                                                 if (!file_exists("images/$maj_d/thumbnails/{$maj_album_entry}-thumbnail.jpg")) {
  2851.                                                         echo "<img src=\"images/$maj_d/album/$maj_album_entry\" width=$maj_new_width height=$maj_new_height border=0 hspace=2 vspace=2";
  2852.                                                 }
  2853.                                                 else {
  2854.                                                         echo "<img src=\"images/$maj_d/thumbnails/{$maj_album_entry}-thumbnail.jpg\" width=$maj_new_width height=$maj_new_height border=0 hspace=2 vspace=2";
  2855.                                                 }
  2856.  
  2857.                                                 if (file_exists("$maj_data_directory/items/$maj_d/album/captions/{$maj_album_entry}.txt")) {
  2858.                                                         echo ' alt="';
  2859.                                                         $maj_img_alt = file_get_contents("$maj_data_directory/items/$maj_d/album/captions/{$maj_album_entry}.txt");
  2860.                                                         $maj_img_alt = strip_tags($maj_img_alt);
  2861.                                                         echo $maj_img_alt;
  2862.                                                         echo '"';
  2863.                                                 }
  2864.                                                 echo "></a>";
  2865.                                         }
  2866.                                         unset($maj_sort_album);
  2867.                                 }
  2868.                         }
  2869.                 }
  2870.                 echo '</div></div>';
  2871.  
  2872.                 echo '</td></tr></table>';
  2873.  
  2874.         }
  2875.        
  2876.         if (file_exists("media/$maj_d/videos") and (file_exists("$maj_data_directory/items/$maj_d/auto-videos.txt") or (isset($maj_req_entry) and !empty($maj_req_entry) and isset($maj_req_show) and !empty($maj_req_show) and ($maj_req_show == videos)))) {
  2877.  
  2878.                 echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"$maj_wmain\"><tr><td>";
  2879.  
  2880.                 echo '<div class="panel_wrapper"><div class="panel_title">Videos</div>';
  2881.                 echo '<div class="panel_body">';
  2882.                                
  2883.                 if (file_exists("$maj_data_directory/items/$maj_d/passwd.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and (!isset($_REQUEST['passwd']) or ($maj_crypt_passwd != $maj_passwd))) {
  2884.                         echo "This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$maj_d&show=videos>here</a> to enter it.";
  2885.                 }
  2886.                 else {
  2887.                         foreach ($maj_videos as $maj_video) {
  2888.                        
  2889.                                 $maj_video_show = str_replace("media/$maj_d/videos/","",$maj_video);
  2890.                        
  2891.                                 echo "<a href=\"video.php?entry=$maj_d&show=$maj_video_show\">";
  2892.                                 echo "<video width=\"95\" height=\"71\" preload=\"meta\" style=\"margin: 2px;\">";
  2893.                                                                
  2894.                                 if (file_exists("$maj_video.mp4")) {
  2895.                                         echo "<source src=\"$maj_video.mp4\" type=\"video/mp4\">";
  2896.                                 }
  2897.                        
  2898.                                 if (file_exists("$maj_video.ogv")) {
  2899.                                         echo "<source src=\"$maj_video.ogv\" type=\"video/ogg\">";
  2900.                                 }
  2901.                                
  2902.                                 if (file_exists("$maj_video.webm")) {
  2903.                                         echo "<source src=\"$maj_video.webm\" type=\"video/webm\">";
  2904.                                 }
  2905.                                        
  2906.                                 echo "</video>";
  2907.                                 echo "</a>";
  2908.                                
  2909.                                 unset($maj_video);
  2910.                         }
  2911.                 }
  2912.                 echo "</div></div></td></tr></table>";
  2913.         }      
  2914.  
  2915.         if (isset($maj_req_entry) and !empty($maj_req_entry) and isset($maj_req_show) and !empty($maj_req_show) and ($maj_req_show == filedrop) and file_exists("$maj_data_directory/items/$maj_d/filedrop/files")) {
  2916.  
  2917.                 echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"$maj_wmain\"><tr><td>";
  2918.  
  2919.                 echo "<div class=\"panel_wrapper\"><div class=\"panel_title\">Filedrop";
  2920.  
  2921.                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  2922.                         echo "<a href=del.php?entry=$maj_d&target=filedrop><img src=images/widget.del.png border=0 width=11 height=11 align=right alt=\"delete filedrop\"></a>";
  2923.                 }
  2924.                 echo "</div><div class=panel_body>";
  2925.  
  2926.                 if (file_exists("$maj_data_directory/items/$maj_d/passwd.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and (!isset($_REQUEST['passwd']) or ($maj_crypt_passwd != $maj_passwd))) {
  2927.                         echo "This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$maj_d&show=filedrop>here</a> to enter it.";
  2928.                 }
  2929.                 else {
  2930.  
  2931.                         if ($maj_dh_count = opendir("$maj_data_directory/items/$maj_d/filedrop/count")) {
  2932.  
  2933.                                 while (($maj_dl_count = readdir($maj_dh_count)) !== false) {
  2934.  
  2935.                                         if ($maj_dl_count != "." && $maj_dl_count != "..") {
  2936.  
  2937.                                                 $maj_dl_match = substr("$maj_dl_count",0,-4);
  2938.  
  2939.                                                 if (file_exists("$maj_data_directory/items/$maj_d/filedrop/count/$maj_dl_count") and !file_exists("$maj_data_directory/items/$maj_d/filedrop/files/$maj_dl_match")) {
  2940.                                                         unlink("$maj_data_directory/items/$maj_d/filedrop/count/$maj_dl_count");
  2941.                                                 }
  2942.                                         }
  2943.                                 }
  2944.                                 closedir($maj_dh_count);
  2945.                         }
  2946.  
  2947.                         if ($maj_dh_filedrop = opendir("$maj_data_directory/items/$maj_d/filedrop/files")) {
  2948.                                 while (($maj_dl_file = readdir($maj_dh_filedrop)) !== false) {
  2949.                                         if ($maj_dl_file != "." && $maj_dl_file != "..") {
  2950.                                                 $maj_filedrop_files[] = $maj_dl_file;
  2951.                                         }
  2952.                                 }
  2953.                         closedir($maj_dh_filedrop);
  2954.                         }
  2955.  
  2956.                         reset($maj_filedrop_files);
  2957.                         sort($maj_filedrop_files);
  2958.  
  2959.                         foreach ($maj_filedrop_files as $maj_filedrop_file) {
  2960.  
  2961.                                 echo "<table border=0 cellspacing=0 cellpadding=4><tr><td>";
  2962.                                 echo "<a href=\"index.php?entry=$maj_d&download=$maj_filedrop_file&type=filedrop\">";
  2963.                                 echo "<img src=images/filedrop.png width=36 height=36 border=0 alt=\"download file\"></a></td>";
  2964.                                 echo "<td><b>$maj_filedrop_file</b>";
  2965.  
  2966.                                 if (file_exists("$maj_data_directory/items/$maj_d/filedrop/sha1.txt")) {
  2967.                                         $maj_sha1 = sha1_file("$maj_data_directory/items/$maj_d/filedrop/files/$maj_filedrop_file");
  2968.                                         echo "<br>$maj_sha1 (<a href=\"http://www.faqs.org/rfcs/rfc3174\" target=\"_maj\">sha1</a>)";
  2969.                                 }
  2970.                                 if (file_exists("$maj_data_directory/items/$maj_d/filedrop/md5.txt")) {
  2971.                                         $maj_md5 = md5_file("$maj_data_directory/items/$maj_d/filedrop/files/$maj_filedrop_file");
  2972.                                         echo "<br>$maj_md5 (<a href=\"http://www.faqs.org/rfcs/rfc1321\" target=\"_maj\">md5</a>)";
  2973.                                 }
  2974.  
  2975.                                 $maj_size = filesize("$maj_data_directory/items/$maj_d/filedrop/files/$maj_filedrop_file");
  2976.                                 $maj_size_string = ($maj_size > 512)?(  ($maj_size/1024 > 512)  ?sprintf("%.02f MB",($maj_size/1024)/1024)  :sprintf("%.02f KB",$maj_size/1024))  :sprintf("%d B",$maj_size);
  2977.  
  2978.                                 echo "<br>$maj_size_string";
  2979.  
  2980.                                 if (file_exists("$maj_data_directory/items/$maj_d/filedrop/count/{$maj_filedrop_file}.txt")) {
  2981.  
  2982.                                         $maj_filedrop_count = file_get_contents("$maj_data_directory/items/$maj_d/filedrop/count/{$maj_filedrop_file}.txt");
  2983.  
  2984.                                         echo "<br>$maj_filedrop_count";
  2985.                                
  2986.                                         if ($maj_filedrop_count == 1) {
  2987.                                                 echo " download";
  2988.                                         }
  2989.                                         if ($maj_filedrop_count > 1) {
  2990.                                                 echo " downloads";
  2991.                                         }
  2992.                                 }
  2993.                                 echo "</td></tr></table>";
  2994.                         }
  2995.                 }
  2996.                 echo "</div></div>";
  2997.  
  2998.                 echo '</td></tr></table>';
  2999.         }
  3000.  
  3001.         if (isset($maj_req_entry) and !empty($maj_req_entry) and isset($maj_req_show) and !empty($maj_req_show) and ($maj_req_show == comments) and (file_exists("$maj_data_directory/items/$maj_req_entry/ucomment.txt") or !file_exists("$maj_data_directory/nocomment.txt") or (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) or (file_exists("$maj_data_directory/memcomment.txt") and isset($maj_logged_in_username)))) {
  3002.  
  3003.                 if (file_exists("$maj_data_directory/items/$maj_d/passwd.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and (!isset($_REQUEST['passwd']) or ($maj_crypt_passwd != $maj_passwd))) {
  3004.                 }
  3005.                 else {
  3006.                         echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"$maj_wmain\"><tr><td>";
  3007.  
  3008.                         if ($maj_dh_comments = opendir("$maj_data_directory/items/$maj_d/comments/live")) {
  3009.                                 while (($maj_live_comment = readdir($maj_dh_comments)) !== false) {
  3010.                                         if ($maj_live_comment != "." && $maj_live_comment != "..") {
  3011.                                                 $maj_show_comments[] = $maj_live_comment;
  3012.                                         }
  3013.                                 }
  3014.                         closedir($maj_dh_comments);
  3015.                         }
  3016.        
  3017.                         asort($maj_show_comments);
  3018.                         reset($maj_show_comments);
  3019.                        
  3020.                         foreach ($maj_show_comments as $maj_comment) {
  3021.  
  3022.                                 echo "<a name=\"$maj_comment\"></a>";
  3023.  
  3024.                                 echo '<div class="panel_wrapper"><div class="panel_title">';
  3025.        
  3026.                                 if (file_exists("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/url.txt")) {
  3027.                                         echo '<a target=_maj href=';
  3028.                                         readfile("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/url.txt");
  3029.                                         echo '>';
  3030.                                 }
  3031.        
  3032.                                 readfile("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/firstname.txt");
  3033.                                 echo ' ';
  3034.                                 readfile("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/lastname.txt");
  3035.        
  3036.                                 if (file_exists("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/url.txt")) {
  3037.                                         echo '</a>';
  3038.                                 }
  3039.        
  3040.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3041.                                         echo '  &lt;';
  3042.                                         readfile("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/email.txt");
  3043.                                         echo '&gt;';
  3044.                                 }
  3045.        
  3046.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3047.                                         echo '<a href=del.php?entry=' . $maj_d . '&comment=' . $maj_comment . '&type=live><img src=images/widget.del.png width=11 height=11 border=0 align=right alt="delete comment"></a>';
  3048.                                         echo '<a href=move.php?entry=' . $maj_d . '&comment=' . $maj_comment . '&type=live><img src=images/widget.move.png width=11 height=11 border=0 align=right alt="move comment"></a>';
  3049.                                         echo '<a href=edit.php?entry=' . $maj_d . '&comment=' . $maj_comment . '&type=live><img src=images/widget.edit.png width=11 height=11 border=0 align=right alt="edit comment"></a>';
  3050.                                 }
  3051.                                 echo '</div><div class=panel_body><table border=0 cellspacing=0 cellpadding=0><tr>';
  3052.                                
  3053.                                 if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/avatar.txt") and file_exists("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/author.txt")) {
  3054.  
  3055.                                         echo "<td width=\"80\" valign=\"top\">";
  3056.                                
  3057.                                         $maj_c_author = file_get_contents("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/author.txt");
  3058.  
  3059.                                         show_maj_avatar_image($maj_c_author,80);
  3060.                                        
  3061.                                         if ($maj_c_dh_posts = opendir("$maj_data_directory/items")) {
  3062.                                                 while (($maj_c_entry_posts = readdir($maj_c_dh_posts)) !== false) {
  3063.                        
  3064.                                                         if (file_exists("$maj_data_directory/items/$maj_c_entry_posts/private.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  3065.                                                                 continue;
  3066.                                                         }
  3067.                        
  3068.                                                         if (file_exists("$maj_data_directory/items/$maj_c_entry_posts/member.txt") and (!isset($maj_logged_in_username))) {
  3069.                                                                 continue;
  3070.                                                         }
  3071.  
  3072.                                                         $maj_private_categories = "0";
  3073.                                
  3074.                                                         if (file_exists("$maj_data_directory/items/$maj_entry_c_entry_posts/categories")) {
  3075.                                                        
  3076.                                                                 if ($maj_dh_cat2_c_entry_posts = opendir("$maj_data_directory/items/$maj_entry_c_entry_posts/categories")) {
  3077.                                                        
  3078.                                                                         while (($maj_entry_cat2_c_entry_posts = readdir($maj_dh_cat2_c_entry_posts)) !== false) {
  3079.                                                        
  3080.                                                                                 if ($maj_entry_cat2_c_entry_posts != "." && $maj_entry_cat2_c_entry_posts != "..") {
  3081.                                                        
  3082.                                                                                         if (file_exists("$maj_data_directory/categories/$maj_entry_cat2_c_entry_posts/private.txt")) {
  3083.                                                                                                 $maj_private_categories = $maj_private_categories + 1;
  3084.                                                                                         }
  3085.                                                                                 }
  3086.                                                                         }
  3087.                                                                         closedir($maj_dh_cat2_c_entry_posts);
  3088.                                                                 }
  3089.                                                         }
  3090.  
  3091.                                                         if (($maj_private_categories > 0) and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and !file_exists("$maj_data_directory/items/$maj_c_entry_posts/cat.txt")) {
  3092.                                                                 continue;
  3093.                                                         }
  3094.                        
  3095.                                                         if ($maj_c_entry_posts != "." && $maj_c_entry_posts != "..") {
  3096.                                                                 if (file_exists("$maj_data_directory/members/active/$maj_c_author") and file_exists("$maj_data_directory/bb.txt")) {
  3097.                                                                         if (file_exists("$maj_data_directory/items/$maj_c_entry_posts/author.txt") and (file_get_contents("$maj_data_directory/items/$maj_c_entry_posts/author.txt") == $maj_c_author)) {
  3098.                                                                                 $maj_c_items_posts[] = $maj_c_entry_posts;
  3099.                                                                         }
  3100.                                                                 }
  3101.                                                                 elseif (!file_exists("$maj_data_directory/members/active/$maj_c_author") and ($maj_admin_username == $maj_c_author) and file_exists("$maj_data_directory/bb.txt")) {
  3102.                                                                         if (file_exists("$maj_data_directory/items/$maj_c_entry_posts/author.txt") and (file_get_contents("$maj_data_directory/items/$maj_c_entry_posts/author.txt") == $maj_c_author)) {
  3103.                                                                                 $maj_c_items_posts[] = $maj_c_entry_posts;
  3104.                                                                         }
  3105.                                                                 }
  3106.                                                         }
  3107.                                                 }
  3108.                                         closedir($maj_c_dh_posts);
  3109.                                         }
  3110.                                         $maj_c_posts = count($maj_c_items_posts);
  3111.                                         if ($maj_c_posts == 1) {
  3112.                                                 echo "$maj_c_posts post";
  3113.                                         }
  3114.                                         if ($maj_c_posts > 1) {
  3115.                                                 echo "$maj_c_posts posts";
  3116.                                         }
  3117.                                         unset($maj_c_items_posts);
  3118.                        
  3119.                                         echo "</td><td width=5 valign=top><div style=\"width: 5px;\"></div></td>";
  3120.                                 }
  3121.  
  3122.                                 echo "<td width=510 valign=top>";
  3123.  
  3124.                                 echo "<font style=\"font-size: $maj_font_Spx; color: #999999;\">";
  3125.  
  3126.                                 if ((file_exists("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/author.txt") and (file_exists("$maj_data_directory/bb.txt") and !file_exists("$maj_data_directory/avatar.txt")) or (file_exists("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/author.txt") and (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username) and !file_exists("$maj_data_directory/avatar.txt"))))) {
  3127.                                         $maj_cxavatar_author = file_get_contents("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/author.txt");
  3128.                                         echo "<a href=member.php?id=$maj_cxavatar_author>$maj_cxavatar_author</a> - ";
  3129.                                 }
  3130.  
  3131.                                 entry2date($maj_comment);
  3132.  
  3133.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3134.  
  3135.                                         if (file_exists("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/revisions.txt")) {
  3136.                                                 echo '  (Revision ';
  3137.                                                 readfile("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/revisions.txt");
  3138.                                                 echo ')';
  3139.                                         }
  3140.                                 }
  3141.  
  3142.                                 echo "</font><div style=\"height: 10px;\"></div>";
  3143.  
  3144.                                 $maj_entry_comment = file_get_contents("$maj_data_directory/items/$maj_d/comments/live/$maj_comment/comment.txt");
  3145.  
  3146.                                 if (file_exists("$maj_data_directory/pf.txt") and file_exists("$maj_data_directory/pf-badwords.txt") and (!isset($maj_logged_in_username) or empty($maj_logged_in_username) or (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username)))) {
  3147.                                         $maj_badwords = file_get_contents("$maj_data_directory/pf-badwords.txt");
  3148.                                         if (file_exists("$maj_data_directory/pf-censor.txt")) {
  3149.                                                 $maj_censor = file_get_contents("$maj_data_directory/pf-censor.txt");
  3150.                                         }
  3151.                                         else {
  3152.                                                 $maj_censor = "[expletive]";
  3153.                                         }
  3154.                                         $maj_entry_comment = preg_replace("/\b($maj_badwords)\b/i",$maj_censor,$maj_entry_comment);
  3155.                                 }
  3156.                                 echo $maj_entry_comment;
  3157.                                 echo '</tr></table></div></div>';
  3158.                         }
  3159.                         unset($maj_show_comments);
  3160.                         echo '</td></tr></table>';
  3161.  
  3162.                         if (isset($maj_logged_in_username)) {
  3163.  
  3164.                                 if (($maj_logged_in_username == $maj_admin_username) and file_exists("$maj_data_directory/comments/unread/$maj_d")) {
  3165.                                         rmdirr("$maj_data_directory/comments/unread/$maj_d");
  3166.  
  3167.                                         if (count(glob("$maj_data_directory/comments/unread/*")) < 1) {
  3168.                                                 rmdirr("$maj_data_directory/comments/unread");
  3169.                                         }
  3170.                                 }
  3171.                                 else {
  3172.                                         if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/comments/unread/$maj_d")) {
  3173.                                                 rmdirr("$maj_data_directory/members/active/$maj_logged_in_username/comments/unread/$maj_d");
  3174.  
  3175.                                                 if (count(glob("$maj_data_directory/members/active/$maj_logged_in_username/comments/unread/*")) < 1) {
  3176.                                                         rmdirr("$maj_data_directory/members/active/$maj_logged_in_username/comments/unread");
  3177.                                                 }
  3178.                                         }
  3179.                                 }
  3180.                         }
  3181.                 }
  3182.  
  3183.                 echo "<a name=\"end\"></a>";
  3184.  
  3185.                 if (!file_exists("$maj_data_directory/nocomment.txt") or (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) or (file_exists("$maj_data_directory/memcomment.txt") and isset($maj_logged_in_username)) or file_exists("$maj_data_directory/items/$maj_d/ucomment.txt")) {
  3186.  
  3187.                         echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"$maj_wmain\"><tr><td>";
  3188.  
  3189.                         if (!isset($maj_logged_in_username) or (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username and file_exists("$maj_data_directory/members/active/$maj_logged_in_username")))) {
  3190.        
  3191.                                 if (isset($maj_req_show) and !empty($maj_req_show) and isset($_POST['captcha_put']) and !empty($_REQUEST['captcha_get']) and isset($_POST['firstname']) and !empty($_POST['firstname']) and isset($_POST['lastname']) and !empty($_POST['lastname']) and isset($_POST['email']) and !empty($_POST['email']) and isset($_POST['new_comment']) and !empty($_POST['new_comment']) and isset($_POST['captcha_put']) and !empty($_POST['captcha_put']) and ($_REQUEST['captcha_get'] == $_POST['captcha_put']) and (ereg("@",$_POST['email'])) and (ereg("\.",$_POST['email']))) {
  3192.                                         echo "<font style=\"font-size: $maj_font_Lpx;\"><b>Thanks!</b></font><p>Your comment has been submitted for approval. Please check back soon to see if it has been posted.</p>";
  3193.                                 }
  3194.                         }
  3195.  
  3196.                         echo "<font style=\"font-size: $maj_font_Lpx;\"><b>Add Comment</b></font>";
  3197.  
  3198.                         if (file_exists("$maj_data_directory/items/$maj_d/passwd.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and (!isset($_REQUEST['passwd']) or ($maj_crypt_passwd != $maj_passwd))) {
  3199.                                 echo "<p>This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$maj_d&show=comments>here</a> to enter it.</p>";
  3200.                         }
  3201.                         else {
  3202.                                 $maj_captcha_rand = str_rand(7);
  3203.                                
  3204.                                 $maj_captcha_show = sha1($maj_captcha_rand);
  3205.                
  3206.                                 echo "<p>Fill out the form below";
  3207.  
  3208.                                 if (!isset($maj_logged_in_username)) {
  3209.                                         echo " and enter <b>$maj_captcha_rand</b> in the CAPTCHA field";
  3210.                                 }
  3211.  
  3212.                                 echo " to add your comment.";
  3213.  
  3214.                                 if ((!isset($maj_logged_in_username) and !file_exists("$maj_data_directory/xscreen.txt")) or (!file_exists("$maj_data_directory/xscreen.txt") and isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username))) {
  3215.                                         echo " Please wait for your comment to be approved and posted.";
  3216.  
  3217.                                         if (!isset($maj_logged_in_username) or (isset($maj_logged_in_username) and !file_exists("$maj_data_directory/members/active/$maj_logged_in_username"))) {
  3218.                                                 echo " Comments with bogus contact information or spam will be discarded.";
  3219.                                         }
  3220.                                 }
  3221.                                 echo "</p>";
  3222.  
  3223.                                 ?>
  3224.                        
  3225.                                 <table border=0 cellspacing=2 cellpadding=0 width=500>
  3226.                                 <form enctype="multipart/form-data" action="index.php?entry=<?php echo $maj_d; ?>&show=comments" method="post">
  3227.                                 <input type=hidden name=captcha_get value="<?php echo $maj_captcha_show; ?>">
  3228.                                 <tr>
  3229.  
  3230.                                 <?php
  3231.                                
  3232.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3233.                                
  3234.                                         $maj_logged_in_author = explode(" ",file_get_contents("$maj_data_directory/author.txt"));
  3235.                                         $maj_logged_in_author_words = count($maj_logged_in_author);
  3236.                                         $maj_logged_in_author_last = $maj_logged_in_author_words - 1;
  3237.                                        
  3238.                                         if ($maj_logged_in_author_words == 2) {
  3239.                                                
  3240.                                                 $maj_logged_in_author_fname = str_replace(",","",$maj_logged_in_author[0]);
  3241.                                                 $maj_logged_in_author_lname = str_replace(",","",$maj_logged_in_author[1]);                                            
  3242.                                         }
  3243.                                        
  3244.                                         if ($maj_logged_in_author_words > 2) {
  3245.                                        
  3246.                                                 $maj_logged_in_author_mkfname = 0;
  3247.                                        
  3248.                                                 while ($maj_logged_in_author_mkfname < $maj_logged_in_author_last) {
  3249.                                                
  3250.                                                         $maj_logged_in_author_fname .= $maj_logged_in_author[$maj_logged_in_author_mkfname] . " ";
  3251.                                                        
  3252.                                                         $maj_logged_in_author_mkfname = $maj_logged_in_author_mkfname + 1;                                             
  3253.                                                 }
  3254.                                                
  3255.                                                 $maj_logged_in_author_lname = $maj_logged_in_author[$maj_logged_in_author_last];
  3256.                                         }
  3257.  
  3258.                                 ?>
  3259.                                         <td width=75></td><td><input type=hidden name=cauthor value="<?php echo $maj_logged_in_username; ?>">
  3260.                                        
  3261.                                         <input type="hidden" name="firstname" value="<?php echo $maj_logged_in_author_fname; ?>"></td>
  3262.  
  3263.                                         <?php
  3264.                                 }
  3265.                                 elseif (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username") and file_exists("$maj_data_directory/bb.txt")) {
  3266.                                         ?>
  3267.                                         <td width=75></td><td><input type=hidden name=cauthor value="<?php echo $maj_logged_in_username; ?>"><input type=hidden name=firstname value="<?php echo file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/firstname.txt"); ?>"></td>
  3268.                                         <?php
  3269.                                 }
  3270.                                 else {
  3271.                                         ?>
  3272.                                         <td width=75><nobr>First Name*</nobr></td><td width=300><input required autofocus class=input type=text autocomplete=off name=firstname maxlength=30></td>
  3273.                                         <?php
  3274.                                 }
  3275.                                 ?>
  3276.                                 <td rowspan=7 valign=top width=75 align=right>
  3277.                                 <table border=0 cellspacing=1 cellpadding=2>
  3278.                                 <tr><td><img src="images/smileys/crying.png" border="0"></td><td>:((</td><td >crying</td></tr>
  3279.                                 <tr><td><img src="images/smileys/frown.png" border="0"></td><td>:(</td><td>frown</td></tr>
  3280.                                 <tr><td><img src="images/smileys/indifferent.png" border="0"></td><td>:|</td><td>indifferent</td></tr>
  3281.                                 <tr><td><img src="images/smileys/laughing.png" border="0"></td><td>:D</td><td>laughing</td></tr>
  3282.                                 <tr><td><img src="images/smileys/lick.png" border="0"></td><td>:P</td><td>lick</td></tr>
  3283.                                 <tr><td><img src="images/smileys/ohno.png" border="0"></td><td>:O</td><td>oh no!</td></tr>
  3284.                                 <tr><td><img src="images/smileys/smile.png" border="0"></td><td>:)</td><td>smile</td></tr>
  3285.                                 <tr><td><img src="images/smileys/surprised.png" border="0"></td><td>=)</td><td>surprised</td></tr>
  3286.                                 <tr><td><img src="images/smileys/undecided.png" border="0"></td><td>:\</td><td>undecided</td></tr>
  3287.                                 <tr><td><img src="images/smileys/wink.png" border="0"></td><td>;)</td><td>wink</td></tr>
  3288.                                 </td></tr>
  3289.                                 </table>
  3290.  
  3291.                                 <?php
  3292.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3293.                                         ?>
  3294.                                         <td width=75></td><td><input type=hidden name=lastname value="<?php echo $maj_logged_in_author_lname; ?>"></td>
  3295.                                         <?php
  3296.                                 }
  3297.                                 elseif (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username") and file_exists("$maj_data_directory/bb.txt")) {
  3298.                                         ?>
  3299.                                         <td width=75></td><td><input type=hidden name=lastname value="<?php echo file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/lastname.txt"); ?>"></td>
  3300.                                         <?php
  3301.                                 }
  3302.                                 else {
  3303.                                         ?>
  3304.                                         <tr><td><nobr>Last Name*</nobr></td><td><input required class=input type=text autocomplete=off name=lastname maxlength=30></td></tr>
  3305.                                         <?php
  3306.                                 }
  3307.  
  3308.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3309.  
  3310.                                         if (file_exists("$maj_data_directory/email.txt")) {
  3311.                                                 ?>
  3312.                                                 <td width=75></td><td colspan=2><input type=hidden name=email value="<?php echo file_get_contents("$maj_data_directory/email.txt"); ?>"></td>
  3313.                                                 <?php
  3314.                                         }
  3315.                                         else {
  3316.                                                 echo "<tr><td><nobr>E-mail*</nobr></td><td colspan=2><input class=input type=email autocomplete=off name=email maxlength=60></td></tr>";
  3317.                                         }
  3318.                                 }
  3319.                                 elseif (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username") and file_exists("$maj_data_directory/bb.txt")) {
  3320.                                         ?>
  3321.                                         <td width=75></td><td colspan=2><input type=hidden name=email value="<?php echo file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/email.txt"); ?>"></td>
  3322.                                         <?php
  3323.                                 }
  3324.                                 else {
  3325.                                         ?>
  3326.                                         <tr><td><nobr>E-mail*</nobr></td><td colspan=2><input required class=input type=email autocomplete=off name=email maxlength=60></td></tr>
  3327.                                         <?php
  3328.                                 }
  3329.  
  3330.                                 if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3331.                                         ?>
  3332.                                         <td width=75></td><td colspan=2><input type=hidden name=url value="<?php file_get_contents("$maj_data_directory/url.txt"); ?>"></td>
  3333.                                         <?php
  3334.                                 }
  3335.                                 elseif (isset($maj_logged_in_username) and ($maj_logged_in_username != $maj_admin_username) and file_exists("$maj_data_directory/members/active/$maj_logged_in_username") and file_exists("$maj_data_directory/bb.txt")) {
  3336.                                         ?>
  3337.                                         <td width=75></td><td colspan=2><input type=hidden name=url value="<?php if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/url.txt")) { echo file_get_contents("$maj_data_directory/members/active/$maj_logged_in_username/url.txt"); } ?>"></td>
  3338.                                         <?php
  3339.                                 }
  3340.                                 else {
  3341.                                         ?>
  3342.                                         <tr><td><nobr>Website</nobr></td><td colspan=2><input class=input type=url autocomplete=off name=url maxlength=300></td></tr>
  3343.                                         <?php
  3344.                                 }
  3345.                                 ?>
  3346.                                 <tr><td><nobr>Comment*</nobr></td><td><textarea required class=input name=new_comment rows=15></textarea></td></tr>
  3347.                                 <?php
  3348.  
  3349.                                 if (isset($maj_logged_in_username)) {
  3350.                                         echo "<input type=hidden name=captcha_put value=\"$maj_captcha_rand\">";
  3351.                                 }
  3352.                                 else {
  3353.                                         echo "<tr><td><nobr>CAPTCHA*</nobr></td><td><input required class=input type=text autocomplete=off name=captcha_put maxlength=7></td></tr>";
  3354.                                 }
  3355.  
  3356.                                 ?>
  3357.                                 <tr><td></td><td><input class="click" type="submit" value="click here to submit your comment"></td></tr>
  3358.                                 </form>
  3359.                                 </table>
  3360.                                 <?php
  3361.                         }
  3362.                         ?>
  3363.                         </td></tr></table><div style="height: 10px;"></div>
  3364.                         <?php
  3365.                 }
  3366.         }
  3367.  
  3368.         if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username) and isset($maj_req_entry) and !empty($maj_req_entry)) {
  3369.        
  3370.                 if ($maj_dh_pending_comments = opendir("$maj_data_directory/items/$maj_d/comments/pending")) {
  3371.        
  3372.                         while (($maj_entry_pending_comments = readdir($maj_dh_pending_comments)) !== false) {
  3373.        
  3374.                                 if ($maj_entry_pending_comments != "." && $maj_entry_pending_comments != "..") {
  3375.                                         $maj_show_pending_comments[] = $maj_entry_pending_comments;
  3376.                                 }
  3377.                         }
  3378.                         closedir($maj_dh_pending_comments);
  3379.                 }
  3380.        
  3381.                 asort($maj_show_pending_comments);
  3382.                 reset($maj_show_pending_comments);
  3383.        
  3384.                 $maj_count_pending_comments = count($maj_show_pending_comments);
  3385.  
  3386.                 if ($maj_count_pending_comments > 0) {
  3387.  
  3388.                         echo '<a name="pending"></a>';
  3389.        
  3390.                         if ($maj_count_pending_comments == 1) {
  3391.                                 echo '<p><b>Pending Comment</b></p>';
  3392.                         }
  3393.                         else {
  3394.                                 echo '<p><b>Pending Comments</b></p>';
  3395.                         }
  3396.  
  3397.                         foreach ($maj_show_pending_comments as $maj_pending_comment) {
  3398.  
  3399.                                 echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"$maj_wmain\"><tr><td>";
  3400.        
  3401.                                 echo '<div class="panel_wrapper"><div class="panel_title">';
  3402.        
  3403.                                 if (file_exists("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/url.txt")) {
  3404.                                         echo '<a target=_maj href=';
  3405.                                         readfile("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/url.txt");
  3406.                                         echo '>';
  3407.                                 }
  3408.                
  3409.                                 readfile("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/firstname.txt");
  3410.                                 echo ' ';
  3411.                                 readfile("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/lastname.txt");
  3412.                
  3413.                                 if (file_exists("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/url.txt")) {
  3414.                                         echo '</a>';
  3415.                                 }
  3416.                
  3417.                                 echo ' &lt;';
  3418.                                 readfile("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/email.txt");
  3419.                                 echo '&gt;';
  3420.        
  3421.                                 echo '<a href=del.php?entry=' . $maj_d . '&comment=' . $maj_pending_comment . '&type=pending><img src=images/widget.del.png width=11 height=11 border=0 align=right alt="delete comment"></a>';
  3422.        
  3423.                                 $maj_pending_comment_login_key = file_get_contents("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/key.txt");
  3424.        
  3425.                                 echo "<a href=\"index.php?entry=$maj_d&comment=$maj_pending_comment&key=$maj_pending_comment_login_key&action=approve\"><img src=\"images/widget.cat.png\" width=\"11\" height=\"11\" border=\"0\" align=\"right\" alt=\"post comment\"></a>";
  3426.        
  3427.                                 echo "<a href=\"move.php?entry=$maj_d&comment=$maj_pending_comment&type=pending\"><img src=\"images/widget.move.png\" width=\"11\" height=\"11\" border=\"0\" align=\"right\" alt=\"move comment\"></a>";
  3428.        
  3429.                                 echo '<a href=edit.php?entry=' . $maj_d . '&comment=' . $maj_pending_comment . '&type=pending><img src=images/widget.edit.png width=11 height=11 border=0 align=right alt="edit comment"></a>';
  3430.        
  3431.                                 echo '</div><div class=panel_body><table border=0 cellspacing=0 cellpadding=0><tr>';
  3432.        
  3433.                                 if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/avatar.txt") and file_exists("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/author.txt")) {
  3434.        
  3435.                                         echo "<td width=\"80\" valign=\"top\">";
  3436.        
  3437.                                         $maj_pc_author = file_get_contents("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/author.txt");
  3438.                                        
  3439.                                         show_maj_avatar_image($maj_pc_author,80);
  3440.        
  3441.                                         if ($maj_pc_dh_posts = opendir("$maj_data_directory/items")) {
  3442.        
  3443.                                                 while (($maj_pc_entry_posts = readdir($maj_pc_dh_posts)) !== false) {
  3444.                        
  3445.                                                         if (file_exists("$maj_data_directory/items/$maj_pc_entry_posts/private.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  3446.                                                                 continue;
  3447.                                                         }
  3448.                        
  3449.                                                         if (file_exists("$maj_data_directory/items/$maj_pc_entry_posts/member.txt") and (!isset($maj_logged_in_username))) {
  3450.                                                                 continue;
  3451.                                                         }
  3452.        
  3453.                                                         $maj_private_categories = "0";
  3454.        
  3455.                                                         if (file_exists("$maj_data_directory/items/$maj_entry_pc_entry_posts/categories")) {
  3456.                                
  3457.                                                                 if ($maj_dh_cat2_pc_entry_posts = opendir("$maj_data_directory/items/$maj_entry_pc_entry_posts/categories")) {
  3458.                                
  3459.                                                                         while (($maj_entry_cat2_pc_entry_posts = readdir($maj_dh_cat2_pc_entry_posts)) !== false) {
  3460.                                
  3461.                                                                                 if ($maj_entry_cat2_pc_entry_posts != "." && $maj_entry_cat2_pc_entry_posts != "..") {
  3462.                                
  3463.                                                                                         if (file_exists("$maj_data_directory/categories/$maj_entry_cat2_pc_entry_posts/private.txt")) {
  3464.                                                                                                 $maj_private_categories = $maj_private_categories + 1;
  3465.                                                                                         }
  3466.                                                                                 }
  3467.                                                                         }
  3468.                                                                         closedir($maj_dh_cat2_pc_entry_posts);
  3469.                                                                 }
  3470.                                                         }
  3471.        
  3472.                                                         if (($maj_private_categories > 0) and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and !file_exists("$maj_data_directory/items/$maj_pc_entry_posts/cat.txt")) {
  3473.                                                                 continue;
  3474.                                                         }
  3475.                        
  3476.                                                         if ($maj_pc_entry_posts != "." && $maj_pc_entry_posts != "..") {
  3477.                                                                 if (file_exists("$maj_data_directory/members/active/$maj_pc_author") and file_exists("$maj_data_directory/bb.txt")) {
  3478.                                                                         if (file_exists("$maj_data_directory/items/$maj_pc_entry_posts/author.txt") and (file_get_contents("$maj_data_directory/items/$maj_pc_entry_posts/author.txt") == $maj_pc_author)) {
  3479.                                                                                 $maj_pc_items_posts[] = $maj_pc_entry_posts;
  3480.                                                                         }
  3481.                                                                 }
  3482.                                                                 elseif (!file_exists("$maj_data_directory/members/active/$maj_pc_author") and ($maj_admin_username == $maj_pc_author) and file_exists("$maj_data_directory/bb.txt")) {
  3483.                                                                         if (file_exists("$maj_data_directory/items/$maj_pc_entry_posts/author.txt") and (file_get_contents("$maj_data_directory/items/$maj_pc_entry_posts/author.txt") == $maj_pc_author)) {
  3484.                                                                                 $maj_pc_items_posts[] = $maj_pc_entry_posts;
  3485.                                                                         }
  3486.                                                                 }
  3487.                                                         }
  3488.                                                 }
  3489.                                                 closedir($maj_pc_dh_posts);
  3490.                                         }
  3491.                                         $maj_pc_posts = count($maj_pc_items_posts);
  3492.                                         if ($maj_pc_posts == 1) {
  3493.                                                 echo "$maj_pc_posts post";
  3494.                                         }
  3495.                                         if ($maj_pc_posts > 1) {
  3496.                                                 echo "$maj_pc_posts posts";
  3497.                                         }
  3498.                                         unset($maj_pc_items_posts);
  3499.                        
  3500.                                         echo "</td><td width=\"5\" valign=\"top\"><div style=\"width: 5px;\"></div></td>";
  3501.                                 }
  3502.  
  3503.                                 echo "<td width=\"510\" valign=\"top\">";
  3504.        
  3505.                                 echo "<font style=\"font-size: $maj_font_Spx; color: #999999;\">";
  3506.        
  3507.                                 if ((file_exists("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/author.txt") and (file_exists("$maj_data_directory/bb.txt") and !file_exists("$maj_data_directory/avatar.txt")) or (file_exists("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/author.txt") and (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username) and !file_exists("$maj_data_directory/avatar.txt"))))) {
  3508.                                         $maj_pxavatar_author = file_get_contents("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/author.txt");
  3509.                                         echo "<a href=member.php?id=$maj_pxavatar_author>$maj_pxavatar_author</a> - ";
  3510.                                 }
  3511.                                 readfile("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/timestamp.txt");
  3512.        
  3513.                                 if (file_exists("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/revisions.txt")) {
  3514.                                         echo '  (Revision ';
  3515.                                         readfile("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/revisions.txt");
  3516.                                         echo ')';
  3517.                                 }
  3518.        
  3519.                                 echo "</font><div style=\"height: 10px;\"></div>";
  3520.                                 readfile("$maj_data_directory/items/$maj_d/comments/pending/$maj_pending_comment/comment.txt");
  3521.                                 echo '</tr></table></div></div>';
  3522.        
  3523.                                 unset($maj_show_pending_comments);
  3524.                                 echo '</td></tr></table>';
  3525.                         }
  3526.                 }
  3527.         }
  3528. }
  3529.  
  3530. if ($maj_count_bottom_panels > 0) {
  3531.  
  3532.         foreach ($maj_bottom_panels as $maj_bottom_panel) {
  3533.  
  3534.                 if (!file_exists("$maj_data_directory/panels/$maj_bottom_panel/free.txt")) {
  3535.  
  3536.                         if (file_exists("$maj_data_directory/panels/$maj_bottom_panel/border.txt")) {
  3537.                                 $maj_bottom_panel_border = file_get_contents("$maj_data_directory/panels/$maj_bottom_panel/border.txt");
  3538.                         }
  3539.                         else {
  3540.                                 if (isset($maj_bottom_panel_border)) {
  3541.                                         unset($maj_bottom_panel_border);
  3542.                                 }
  3543.                         }
  3544.  
  3545.                         if (file_exists("$maj_data_directory/panels/$maj_bottom_panel/bgcolor-t.txt")) {
  3546.                                 $maj_bottom_panel_bgcolor_t = file_get_contents("$maj_data_directory/panels/$maj_bottom_panel/bgcolor-t.txt");
  3547.                         }
  3548.                         else {
  3549.                                 if (isset($maj_bottom_panel_bgcolor_t)) {
  3550.                                         unset($maj_bottom_panel_bgcolor_t);
  3551.                                 }
  3552.                         }
  3553.  
  3554.                         if (file_exists("$maj_data_directory/panels/$maj_bottom_panel/bgcolor-c.txt")) {
  3555.                                 $maj_bottom_panel_bgcolor_c = file_get_contents("$maj_data_directory/panels/$maj_bottom_panel/bgcolor-c.txt");
  3556.                         }
  3557.                         else {
  3558.                                 if (isset($maj_bottom_panel_bgcolor_c)) {
  3559.                                         unset($maj_bottom_panel_bgcolor_c);
  3560.                                 }
  3561.                         }
  3562.  
  3563.                         if (file_exists("$maj_data_directory/panels/$maj_bottom_panel/text-t.txt")) {
  3564.                                 $maj_bottom_panel_text_t = file_get_contents("$maj_data_directory/panels/$maj_bottom_panel/text-t.txt");
  3565.                         }
  3566.                         else {
  3567.                                 if (isset($maj_bottom_panel_text_t)) {
  3568.                                         unset($maj_bottom_panel_text_t);
  3569.                                 }
  3570.                         }
  3571.  
  3572.                         if (file_exists("$maj_data_directory/panels/$maj_bottom_panel/text-c.txt")) {
  3573.                                 $maj_bottom_panel_text_c = file_get_contents("$maj_data_directory/panels/$maj_bottom_panel/text-c.txt");
  3574.                         }
  3575.                         else {
  3576.                                 if (isset($maj_bottom_panel_text_c)) {
  3577.                                         unset($maj_bottom_panel_text_c);
  3578.                                 }
  3579.                         }
  3580.  
  3581.                         echo '<div class="panel_wrapper"><div class="panel_title"';
  3582.  
  3583.                         if (isset($maj_bottom_panel_border) or isset($maj_bottom_panel_bgcolor_t) or isset($maj_bottom_panel_text_t)) {
  3584.                                 echo ' style="';
  3585.                         }
  3586.  
  3587.                         if (isset($maj_bottom_panel_bgcolor_t)) {
  3588.                                 echo "background-color: $maj_bottom_panel_bgcolor_t;";
  3589.                         }
  3590.  
  3591.                         if (isset($maj_bottom_panel_text_t)) {
  3592.                                 echo "color: $maj_bottom_panel_text_t;";
  3593.                         }
  3594.  
  3595.                         if (isset($maj_bottom_panel_border)) {
  3596.                                 echo "border-color: $maj_bottom_panel_border;";
  3597.                         }
  3598.  
  3599.                         if (isset($maj_bottom_panel_border) or isset($maj_bottom_panel_bgcolor_t) or isset($maj_bottom_panel_text_t)) {
  3600.                                 echo '"';
  3601.                         }
  3602.  
  3603.                         echo '>';
  3604.  
  3605.                         readfile("$maj_data_directory/panels/$maj_bottom_panel/title.txt");
  3606.  
  3607.                         if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3608.                                 echo "<a href=\"panels.php#{$maj_bottom_panel}\">";
  3609.                                 echo '<img src="images/widget.edit.png" border="0" width="11" height="11" align="right"></a>';
  3610.                         }
  3611.  
  3612.                         if (file_exists("$maj_data_directory/panels/$maj_bottom_panel/private.txt")) {
  3613.                                 echo '<img src="images/widget.private.png" border="0" width="11" height="11" align="right">';
  3614.                         }
  3615.  
  3616.                         echo '</div>';
  3617.  
  3618.                         echo '<div class="panel_body"';
  3619.  
  3620.                         if (isset($maj_bottom_panel_border) or isset($maj_bottom_panel_bgcolor_c) or isset($maj_bottom_panel_text_c)) {
  3621.                                 echo ' style="';
  3622.                         }
  3623.  
  3624.                         if (isset($maj_bottom_panel_bgcolor_c)) {
  3625.                                 echo "background-color: $maj_bottom_panel_bgcolor_c;";
  3626.                         }
  3627.  
  3628.                         if (isset($maj_bottom_panel_text_c)) {
  3629.                                 echo "color: $maj_bottom_panel_text_c;";
  3630.                         }
  3631.  
  3632.                         if (isset($maj_bottom_panel_border)) {
  3633.                                 echo "border-color: $maj_bottom_panel_border;";
  3634.                         }
  3635.  
  3636.                         if (isset($maj_bottom_panel_border) or isset($maj_bottom_panel_bgcolor_c) or isset($maj_bottom_panel_text_c)) {
  3637.                                 echo '"';
  3638.                         }
  3639.  
  3640.                         echo '>';
  3641.                 }
  3642.  
  3643.                 if (file_exists("$maj_data_directory/panels/$maj_bottom_panel/free.txt")) {
  3644.                         echo '<div class=panel_free>';
  3645.                 }
  3646.  
  3647.                 include("$maj_data_directory/panels/$maj_bottom_panel/panel.php");
  3648.  
  3649.                 echo '</div></div>';
  3650.  
  3651.                 if (file_exists("$maj_data_directory/panels/$maj_bottom_panel/free.txt") and !file_exists("$maj_data_directory/panels/$maj_bottom_panel/nomargin.txt")) {
  3652.                         echo "<div style=\"height: {$maj_wspace}px;\"></div>";
  3653.                 }
  3654.         }
  3655. }
  3656.  
  3657. ?>
  3658.  
  3659. <table border="0" cellspacing="0" cellpadding="0" width="100%"><tr>
  3660.  
  3661. <?php
  3662.  
  3663. if (($maj_start >= $maj_increase) and ($maj_start != 0)) {
  3664.  
  3665.         echo "<td align=left><a href=\"index.php?";
  3666.  
  3667.         if (isset($maj_req_category) and !empty($maj_req_category) and file_exists("$maj_data_directory/categories/$maj_req_category")) {
  3668.                 echo "category=$maj_req_category";
  3669.         }
  3670.  
  3671.         if (isset($maj_req_archive) and !empty($maj_req_archive)) {
  3672.                 echo "archive=$maj_req_archive";
  3673.         }
  3674.  
  3675.         if (isset($maj_req_author) and !empty($maj_req_author) and file_exists("$maj_data_directory/members/active/$maj_req_author") and file_exists("$maj_data_directory/bb.txt")) {
  3676.                 echo "author=$maj_req_author";
  3677.         }
  3678.  
  3679.         if (isset($maj_req_author) and !empty($maj_req_author) and !file_exists("$maj_data_directory/members/active/$maj_req_author") and ($maj_admin_username == $maj_req_author) and file_exists("$maj_data_directory/bb.txt")) {
  3680.                 echo "author=$maj_req_author";
  3681.         }
  3682.  
  3683.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "private")) {
  3684.                 echo "find=private";
  3685.         }
  3686.  
  3687.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "member")) {
  3688.                 echo "find=member";
  3689.         }
  3690.  
  3691.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "unfiled")) {
  3692.                 echo "find=unfiled";
  3693.         }
  3694.  
  3695.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "passwd")) {
  3696.                 echo "find=passwd";
  3697.         }
  3698.  
  3699.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "comments")) {
  3700.                 echo "find=comments";
  3701.         }
  3702.  
  3703.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "album")) {
  3704.                 echo "find=album";
  3705.         }
  3706.  
  3707.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "filedrop")) {
  3708.                 echo "find=filedrop";
  3709.         }
  3710.  
  3711.         echo "&start=" . ($maj_start-$maj_increase) . "\">previous</a></td>";
  3712. }
  3713.  
  3714. if ($maj_end < sizeof($maj_items)) {
  3715.  
  3716.         echo "<td align=right><a href=\"index.php?";
  3717.  
  3718.         if (isset($maj_req_category) and !empty($maj_req_category) and file_exists("$maj_data_directory/categories/$maj_req_category")) {
  3719.                 echo "category=$maj_req_category";
  3720.         }
  3721.         if (isset($maj_req_archive) and !empty($maj_req_archive)) {
  3722.                 echo "archive=$maj_req_archive";
  3723.         }
  3724.         if (isset($maj_req_author) and !empty($maj_req_author) and file_exists("$maj_data_directory/members/active/$maj_req_author") and file_exists("$maj_data_directory/bb.txt")) {
  3725.                 echo "author=$maj_req_author";
  3726.         }
  3727.         if (isset($maj_req_author) and !empty($maj_req_author) and !file_exists("$maj_data_directory/members/active/$maj_req_author") and ($maj_admin_username == $maj_req_author) and file_exists("$maj_data_directory/bb.txt")) {
  3728.                 echo "author=$maj_req_author";
  3729.         }
  3730.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "private")) {
  3731.                 echo "find=private";
  3732.         }
  3733.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "member")) {
  3734.                 echo "find=member";
  3735.         }
  3736.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "unfiled")) {
  3737.                 echo "find=unfiled";
  3738.         }
  3739.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "passwd")) {
  3740.                 echo "find=passwd";
  3741.         }
  3742.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "comments")) {
  3743.                 echo "find=comments";
  3744.         }
  3745.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "album")) {
  3746.                 echo "find=album";
  3747.         }
  3748.         if (isset($maj_req_find) and !empty($maj_req_find) and ($maj_req_find == "filedrop")) {
  3749.                 echo "find=filedrop";
  3750.         }
  3751.         echo "&start=" . ($maj_start+$maj_increase) . "\">next</a></td>";
  3752. }
  3753.  
  3754. echo "</tr></table></td>";
  3755.  
  3756. // right side
  3757.  
  3758. echo "<td width=\"$maj_wside\" valign=\"top\">";
  3759.  
  3760. if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  3761.         if ($maj_dh_pending_comment_flags = opendir("$maj_data_directory/comments/pending")) {
  3762.                 while (($maj_entry_pending_comment_flags = readdir($maj_dh_pending_comment_flags)) !== false) {
  3763.                         if ($maj_entry_pending_comment_flags != "." && $maj_entry_pending_comment_flags != "..") {
  3764.                                 $maj_show_pending_comment_flags[] = $maj_entry_pending_comment_flags;
  3765.                         }
  3766.                 }
  3767.                 closedir($maj_dh_pending_comment_flags);
  3768.         }
  3769.  
  3770.         rsort($maj_show_pending_comment_flags);
  3771.         reset($maj_show_pending_comment_flags);
  3772.         $maj_count_pending_comment_flags = count($maj_show_pending_comment_flags);
  3773.  
  3774.         if (($maj_count_latest > 0) and ($maj_count_pending_comment_flags > 0)) {
  3775.  
  3776.                 echo '<div class="panel_wrapper"><div class="panel_title">Pending Comments</div>';
  3777.                
  3778.                 echo '<div class="panel_body">';
  3779.  
  3780.                 if ($maj_dh_list_pending_comment_flags = opendir("$maj_data_directory/comments/pending")) {
  3781.  
  3782.                         while (($maj_entry_list_pending_comment_flags = readdir($maj_dh_list_pending_comment_flags)) !== false) {
  3783.  
  3784.                                 if ($maj_entry_list_pending_comment_flags != "." && $maj_entry_list_pending_comment_flags != "..") {
  3785.  
  3786.                                         echo "<a href=\"index.php?entry=$maj_entry_list_pending_comment_flags&show=comments#pending\">";
  3787.                                         readfile("$maj_data_directory/items/$maj_entry_list_pending_comment_flags/title.txt");
  3788.                                         echo "</a><br><font style=\"font-size: $maj_font_Spx; color: #999999;\">";
  3789.  
  3790.                                         $maj_comment_count_value = file_get_contents("$maj_data_directory/comments/pending/$maj_entry_list_pending_comment_flags/count.txt");
  3791.  
  3792.                                         if ($maj_comment_count_value == 1) {
  3793.                                                 echo " ($maj_comment_count_value comment) ";
  3794.                                         }
  3795.                                         elseif ($maj_comment_count_value > 1) {
  3796.                                                 echo " ($maj_comment_count_value comments) ";
  3797.                                         }
  3798.                                         else {
  3799.                                                 echo '';
  3800.                                         }
  3801.                                         echo '</font><br>';
  3802.                                 }
  3803.                         }
  3804.                         closedir($maj_dh_list_pending_comment_flags);
  3805.                 }
  3806.                 echo '</div></div>';
  3807.         }
  3808. }
  3809.  
  3810. if (!file_exists("$maj_data_directory/xucomment.txt") and isset($maj_logged_in_username)) {
  3811.  
  3812.         if ($maj_logged_in_username == $maj_admin_username) {
  3813.  
  3814.                 if (file_exists("$maj_data_directory/comments/unread") and (count(glob("$maj_data_directory/comments/unread/*")) > 0)) {
  3815.                        
  3816.                         if ($maj_dh_unread_comments = opendir("$maj_data_directory/comments/unread")) {
  3817.                        
  3818.                                 while (($maj_unread_comment = readdir($maj_dh_unread_comments)) !== false) {
  3819.                        
  3820.                                         if ($maj_unread_comment != "." && $maj_unread_comment != "..") {
  3821.  
  3822.                                                 if (!file_exists("$maj_data_directory/items/$maj_unread_comment")) {
  3823.                                                         rmdirr("$maj_data_directory/comments/unread/$maj_unread_comment");
  3824.                                                 }
  3825.                                                 else {
  3826.                                                         $maj_unread_comments[] = $maj_unread_comment;
  3827.                                                 }
  3828.                                         }
  3829.                                 }
  3830.                         closedir($maj_dh_unread_comments);
  3831.                         }
  3832.                 }
  3833.         }
  3834.         else {
  3835.                 if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username")) {
  3836.  
  3837.                         if (file_exists("$maj_data_directory/members/active/$maj_logged_in_username/comments/unread") and (count(glob("$maj_data_directory/members/active/$maj_logged_in_username/comments/unread/*")) > 0)) {
  3838.                        
  3839.                                 if ($maj_dh_unread_comments = opendir("$maj_data_directory/members/active/$maj_logged_in_username/comments/unread")) {
  3840.                        
  3841.                                         while (($maj_unread_comment = readdir($maj_dh_unread_comments)) !== false) {
  3842.                        
  3843.                                                 if ($maj_unread_comment != "." && $maj_unread_comment != "..") {
  3844.  
  3845.                                                         if (!file_exists("$maj_data_directory/items/$maj_unread_comment")) {
  3846.                                                                 rmdirr("$maj_data_directory/members/active/$maj_logged_in_username/comments/unread/$maj_unread_comment");
  3847.                                                         }
  3848.                                                         else {
  3849.                                                                 $maj_unread_comments[] = $maj_unread_comment;
  3850.                                                         }
  3851.                                                 }
  3852.                                         }
  3853.                                 closedir($maj_dh_unread_comments);
  3854.                                 }
  3855.                         }
  3856.                 }
  3857.         }
  3858.  
  3859.         sort($maj_unread_comments);
  3860.         reset($maj_unread_comments);
  3861.  
  3862.         if (count($maj_unread_comments) > 0) {
  3863.  
  3864.                 echo '<div class="panel_wrapper"><div class="panel_title"><a href="del.php?target=unread"><img src="images/widget.del.png" border="0" width="11" height="11" align="right"></a>Unread Comments</div>';
  3865.                 echo '<div class="panel_body"><table border="0" cellspacing="0" cellpadding="0" width="100%">';
  3866.  
  3867.                 foreach ($maj_unread_comments as $maj_unread_comment) {
  3868.                
  3869.                         $maj_unread_comment_title = file_get_contents("$maj_data_directory/items/$maj_unread_comment/title.txt");
  3870.  
  3871.                         echo "<tr><td><a class=\"navlink\" href=\"index.php?entry=$maj_unread_comment&show=comments\">$maj_unread_comment_title</a></td></tr>";
  3872.                 }
  3873.  
  3874.                 echo '</table></div></div>';
  3875.         }
  3876. }
  3877.  
  3878. if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username) and file_exists("$maj_data_directory/members/confirmed") and !file_exists("$maj_data_directory/xapp.txt") and file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/reg.txt")) {
  3879.         if ($maj_dh_pending_list = opendir("$maj_data_directory/members/confirmed")) {
  3880.                 while (($maj_entry_pending_list = readdir($maj_dh_pending_list)) !== false) {
  3881.  
  3882.                         if ($maj_entry_pending_list != "." && $maj_entry_pending_list != "..") {
  3883.                                 $maj_show_pending_list[] = $maj_entry_pending_list;
  3884.                         }
  3885.                 }
  3886.                 closedir($maj_dh_pending_list);
  3887.         }
  3888.  
  3889.         sort($maj_show_pending_list);
  3890.         reset($maj_show_pending_list);
  3891.         $maj_count_pending_list = count($maj_show_pending_list);
  3892.        
  3893.         if ($maj_count_pending_list > 0) {
  3894.  
  3895.                 echo '<div class="panel_wrapper"><div class="panel_title">Pending Member';
  3896.                
  3897.                 if ($maj_count_pending_list > 1) {
  3898.                         echo "s";
  3899.                 }
  3900.                 echo "</div><div class=panel_body>Please approve or deny $maj_count_pending_list pending membership request";
  3901.                 if ($maj_count_pending_list > 1) {
  3902.                         echo "s";
  3903.                 }
  3904.                 echo " below.</div></div>";
  3905.  
  3906.                 foreach ($maj_show_pending_list as $maj_pending_list_entry) {
  3907.  
  3908.                         echo '<div class="panel_wrapper"><div class="panel_title">';
  3909.                         echo "$maj_pending_list_entry";
  3910.                         echo '<a href=reg.php?username=';
  3911.                         echo $maj_pending_list_entry;
  3912.                         echo '&key=';
  3913.                         readfile("$maj_data_directory/members/confirmed/$maj_pending_list_entry/key.txt");
  3914.                         echo '&action=deny><img src=images/widget.del.png border=0 width=11 height=11 align=right alt=deny></a><a href=reg.php?username=';
  3915.                         echo $maj_pending_list_entry;
  3916.                         echo '&key=';
  3917.                         readfile("$maj_data_directory/members/confirmed/$maj_pending_list_entry/key.txt");
  3918.                         echo '&action=approve><img src=images/widget.cat.png border=0 width=11 height=11 align=right alt=approve></a></div>';
  3919.                         echo "<div class=panel_body>";
  3920.                         if (file_exists("$maj_data_directory/members/confirmed/$maj_pending_list_entry/url.txt")) {
  3921.                                 echo "<a href=\"";
  3922.                                 readfile("$maj_data_directory/members/confirmed/$maj_pending_list_entry/url.txt");
  3923.                                 echo "\" target=_pending>";
  3924.                         }
  3925.                         readfile("$maj_data_directory/members/confirmed/$maj_pending_list_entry/firstname.txt");
  3926.                         echo "&nbsp;";
  3927.                         readfile("$maj_data_directory/members/confirmed/$maj_pending_list_entry/lastname.txt");
  3928.                         if (file_exists("$maj_data_directory/members/confirmed/$maj_pending_list_entry/url.txt")) {
  3929.                                 echo "</a>";
  3930.                         }
  3931.                         echo "<br>";
  3932.                         $maj_pending_email = file_get_contents("$maj_data_directory/members/confirmed/$maj_pending_list_entry/email.txt");
  3933.                         $maj_pending_email = wordwrap($maj_pending_email,30);
  3934.                         echo $maj_pending_email;
  3935.                         if (file_exists("$maj_data_directory/members/confirmed/$maj_pending_list_entry/timestamp.txt")) {
  3936.                                 $maj_confirmed = file_get_contents("$maj_data_directory/members/confirmed/$maj_pending_list_entry/timestamp.txt");
  3937.                                 $maj_confirmed_year = substr($maj_confirmed,0,4);
  3938.                                 $maj_confirmed_month = substr($maj_confirmed,4,2);
  3939.                                 $maj_confirmed_day = substr($maj_confirmed,6,2);
  3940.                                 $maj_confirmed_hh = substr($maj_confirmed,8,2);
  3941.                                 $maj_confirmed_mm = substr($maj_confirmed,10,2);
  3942.                                 $maj_email_confirmed = date("d M Y H:i",mktime($maj_confirmed_hh,$maj_confirmed_mm,0,$maj_confirmed_month,$maj_confirmed_day,$maj_confirmed_year));
  3943.                                 echo "<br>$maj_email_confirmed";
  3944.                         }
  3945.                         echo "</div></div>";
  3946.                 }
  3947.         }
  3948. }
  3949.  
  3950. if (file_exists("$maj_data_directory/bb.txt") and file_exists("$maj_data_directory/bb-stats.txt")) {
  3951.  
  3952.         echo '<div class="panel_wrapper"><div class="panel_title">Bulletin Board</div>';
  3953.        
  3954.         echo "<div class=panel_body>";
  3955.  
  3956.         if (file_exists("$maj_data_directory/members/active") and file_exists("$maj_data_directory/bb.txt")) {
  3957.                 if ($maj_dh_active_list = opendir("$maj_data_directory/members/active")) {
  3958.                         while (($maj_entry_active_list = readdir($maj_dh_active_list)) !== false) {
  3959.                                 if ($maj_entry_active_list != "." && $maj_entry_active_list != "..") {
  3960.                                         $maj_show_active_list[] = $maj_entry_active_list;
  3961.                                 }
  3962.                         }
  3963.                 closedir($maj_dh_active_list);
  3964.                 }
  3965.  
  3966.                 sort($maj_show_active_list);
  3967.                 reset($maj_show_active_list);
  3968.                 $maj_count_active_list = count($maj_show_active_list);
  3969.                 if ($maj_count_active_list > 0) {
  3970.                         echo "Registered Members: $maj_count_active_list";
  3971.                 }
  3972.         }
  3973.  
  3974.         if (file_exists("$maj_data_directory/items")) {
  3975.                 if ($maj_dh_mempost_list = opendir("$maj_data_directory/items")) {
  3976.                         while (($maj_entry_mempost_list = readdir($maj_dh_mempost_list)) !== false) {
  3977.  
  3978.                                 if (file_exists("$maj_data_directory/items/$maj_entry_mempost_list/private.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  3979.                                         continue;
  3980.                                 }
  3981.  
  3982.                                 $maj_private_categories = "0";
  3983.  
  3984.                                 if (file_exists("$maj_data_directory/items/$maj_entry_mempost_list/categories")) {
  3985.                        
  3986.                                         if ($maj_dh_entry_categories_mempost_list = opendir("$maj_data_directory/items/$maj_entry_mempost_list/categories")) {
  3987.                        
  3988.                                                 while (($maj_entry_category_mempost_list = readdir($maj_dh_entry_categories_mempost_list)) !== false) {
  3989.                        
  3990.                                                         if ($maj_entry_category_mempost_list != "." && $maj_entry_category_mempost_list != "..") {
  3991.                        
  3992.                                                                 if (file_exists("$maj_data_directory/categories/$maj_entry_category_mempost_list/private.txt")) {
  3993.                                                                         $maj_private_categories = $maj_private_categories + 1;
  3994.                                                                 }
  3995.                                                         }
  3996.                                                 }
  3997.                                                 closedir($maj_dh_entry_categories_mempost_list);
  3998.                                         }
  3999.                                 }
  4000.  
  4001.                                 if (($maj_private_categories > 0) and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username)) and !file_exists("$maj_data_directory/items/$maj_entry_mempost_list/cat.txt")) {
  4002.                                         continue;
  4003.                                 }
  4004.        
  4005.                                 if ($maj_entry_mempost_list != "." && $maj_entry_mempost_list != "..") {
  4006.                                         $maj_entry_mempost_list = substr("$maj_entry_mempost_list",0,6);
  4007.                                         $maj_show_mempost_list[] = $maj_entry_mempost_list;
  4008.                                 }
  4009.                         }
  4010.                         closedir($maj_dh_mempost_list);
  4011.                 }
  4012.                 rsort($maj_show_mempost_list);
  4013.                 $maj_count_mempost_list = count($maj_show_mempost_list);
  4014.                 echo "<br>Total Posts: $maj_count_mempost_list";
  4015.                 unset($maj_show_mempost_list);
  4016.         }
  4017.  
  4018.         if (file_exists("$maj_data_directory/bb-new.txt")) {
  4019.                 $maj_bb_new = file_get_contents("$maj_data_directory/bb-new.txt");
  4020.                 echo "<br>Newest User: <a href=member.php?id=$maj_bb_new>$maj_bb_new</a>";
  4021.         }
  4022.         if (file_exists("$maj_data_directory/bb-last.txt")) {
  4023.                 $maj_bb_last = file_get_contents("$maj_data_directory/bb-last.txt");
  4024.                 echo "<br>Latest Login: <a href=member.php?id=$maj_bb_last>$maj_bb_last</a>";
  4025.         }
  4026.         echo "</div></div>";
  4027. }
  4028.  
  4029. if (($maj_count_grand > 0) and (!file_exists("$maj_data_directory/xsearch.txt") or ($maj_logged_in_username == $maj_admin_username))) {
  4030.        
  4031.         echo '<div class="panel_wrapper"><div class="panel_title">';
  4032.  
  4033.         ?>
  4034.  
  4035.         Search</div>
  4036.         <form enctype="multipart/form-data" action="dig.php" method="post">
  4037.         <div class="panel_body">
  4038.         <input type="search" class="search" name="search" autocomplete="off" maxlength="55" required>
  4039.         </form>
  4040.         </div></div>
  4041.  
  4042.         <?php
  4043. }
  4044.  
  4045.  
  4046. if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  4047.  
  4048.         echo '<div class="panel_wrapper"><div class="panel_title">Find Entries</div>';
  4049.        
  4050.         echo "<div class=panel_body>";
  4051.         echo "<a class=\"navlink\" href=\"index.php?find=private\">Private</a>";
  4052.         if (file_exists("$maj_data_directory/bb.txt")) {
  4053.                 echo "<br><a class=\"navlink\" href=\"index.php?find=member\">Members-Only</a>";
  4054.         }
  4055.         echo "<br><a class=\"navlink\" href=\"index.php?find=unfiled\">Unfiled</a>";
  4056.         echo "<br><a class=\"navlink\" href=\"index.php?find=passwd\">Password Protected</a>";
  4057.         echo "<br><a class=\"navlink\" href=\"index.php?find=comments\">With Comments</a>";
  4058.         echo "<br><a class=\"navlink\" href=\"index.php?find=filedrop\">With Attached Files</a>";
  4059.         echo "<br><a class=\"navlink\" href=\"index.php?find=album\">With Photo Album</a>";
  4060.         echo "</div></div>";
  4061. }
  4062.  
  4063. if (file_exists("$maj_data_directory/categories")) {
  4064.         if ($maj_dh_categories = opendir("$maj_data_directory/categories")) {
  4065.                 while (($maj_entry_categories = readdir($maj_dh_categories)) !== false) {
  4066.  
  4067.                         if (file_exists("$maj_data_directory/xcat.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  4068.                                 continue;
  4069.                         }
  4070.  
  4071.                         if (file_exists("$maj_data_directory/categories/$maj_entry_categories/private.txt") and (!isset($maj_logged_in_username) or ($maj_logged_in_username != $maj_admin_username))) {
  4072.                                 continue;
  4073.                         }
  4074.  
  4075.                         if ($maj_entry_categories != "." && $maj_entry_categories != "..") {
  4076.                                 $maj_show_categories[] = $maj_entry_categories;
  4077.                         }
  4078.                 }
  4079.                 closedir($maj_dh_categories);
  4080.         }
  4081.  
  4082.         sort($maj_show_categories);
  4083.         reset($maj_show_categories);
  4084.         $maj_count_categories = count($maj_show_categories);
  4085.  
  4086.         if ($maj_count_categories > 0) {
  4087.  
  4088.                 echo '<div class="panel_wrapper"><div class="panel_title">Categories</div>';
  4089.                
  4090.                 echo '<div class=panel_body>';
  4091.  
  4092.                 foreach ($maj_show_categories as $maj_category) {
  4093.  
  4094.                         echo "<a class=\"navlink\" href=\"index.php?category=$maj_category\">";
  4095.  
  4096.                         if (file_exists("$maj_data_directory/categories/$maj_category/title.txt")) {
  4097.                                 $maj_category_title = file_get_contents("$maj_data_directory/categories/$maj_category/title.txt");
  4098.                         }
  4099.                         else {
  4100.                                 $maj_category_title = ucfirst(str_replace("_"," ",$maj_category));
  4101.                         }
  4102.  
  4103.                         echo $maj_category_title;
  4104.                         echo "</a><br>";
  4105.                 }
  4106.  
  4107.                 echo '</div></div>';
  4108.         }
  4109. }
  4110.  
  4111. if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  4112.  
  4113.         echo '<div class="panel_wrapper"><div class="panel_title">Statistics</div>';
  4114.        
  4115.         echo '<div class=panel_body>';
  4116.         echo "Total Entries: $maj_count_latest";
  4117.         if (file_exists("$maj_data_directory/hits.txt")) {
  4118.                 echo '<br>Site Hits: ';
  4119.                 readfile("$maj_data_directory/hits.txt");
  4120.         }
  4121.         if (file_exists("$maj_data_directory/google.txt")) {
  4122.                 echo '<br>Google Visits: ';
  4123.                 readfile("$maj_data_directory/google.txt");
  4124.         }
  4125.         if (file_exists("$maj_data_directory/rss-0.91.txt")) {
  4126.                 echo '<br>RSS 0.91 Hits: ';
  4127.                 readfile("$maj_data_directory/rss-0.91.txt");
  4128.         }
  4129.         if (file_exists("$maj_data_directory/rss-1.0.txt")) {
  4130.                 echo '<br>RSS 1.0 Hits: ';
  4131.                 readfile("$maj_data_directory/rss-1.0.txt");
  4132.         }
  4133.         if (file_exists("$maj_data_directory/rss-2.0.txt")) {
  4134.                 echo '<br>RSS 2.0 Hits: ';
  4135.                 readfile("$maj_data_directory/rss-2.0.txt");
  4136.         }
  4137.         if (file_exists("$maj_data_directory/sitemap.txt")) {
  4138.                 echo '<br>Sitemap Requests: ';
  4139.                 readfile("$maj_data_directory/sitemap.txt");
  4140.         }
  4141.  
  4142.         echo '</div></div>';
  4143. }
  4144.  
  4145. if (($maj_count_latest > 0) and ($maj_count_latest > $maj_increase) and (!file_exists("$maj_data_directory/xrecent.txt") or ($maj_logged_in_username == $maj_admin_username))) {
  4146.  
  4147.         echo '<div class="panel_wrapper"><div class="panel_title">Recent Entries</div>';
  4148.        
  4149.         echo '<div class=panel_body>';
  4150.  
  4151.         $maj_increment_recent_entries = "0";
  4152.  
  4153.         if ($maj_count_latest < 10) {
  4154.                 $maj_max_recent_entries = $maj_count_latest;
  4155.         }
  4156.         else {
  4157.                 $maj_max_recent_entries = "10";
  4158.         }
  4159.  
  4160.         while ($maj_increment_recent_entries < $maj_max_recent_entries) {
  4161.  
  4162.                 echo "<a class=\"navlink\" href=\"index.php?entry=$maj_latest[$maj_increment_recent_entries]\">";
  4163.                 readfile("$maj_data_directory/items/$maj_latest[$maj_increment_recent_entries]/title.txt");
  4164.                 echo "</a><br>";
  4165.  
  4166.                 $maj_increment_recent_entries = $maj_increment_recent_entries + 1;
  4167.         }
  4168.  
  4169.         echo '</div></div>';
  4170. }
  4171.  
  4172. if (($maj_count_albums > 0) and (!file_exists("$maj_data_directory/xalbum.txt") or ($maj_logged_in_username == $maj_admin_username))) {
  4173.  
  4174.         echo "<div class=\"panel_wrapper\"><div class=\"panel_title\">Albums</div>";
  4175.        
  4176.         echo "<div class=\"panel_body\">";
  4177.  
  4178.         foreach ($maj_albums as $maj_album) {
  4179.                 echo "<a class=\"navlink\" href=\"index.php?entry=$maj_album&show=album\">";
  4180.                 readfile("$maj_data_directory/items/$maj_album/title.txt");
  4181.                 echo "</a><br>";
  4182.         }
  4183.         echo '</div></div>';
  4184. }
  4185.  
  4186. if (!file_exists("$maj_data_directory/xrand.txt") or ($maj_logged_in_username == $maj_admin_username)) {
  4187.        
  4188.         shuffle($maj_random);
  4189.         reset($maj_random);
  4190.  
  4191.         if (file_exists("$maj_data_directory/increase.txt")) {
  4192.                 $maj_limit_random = file_get_contents("$maj_data_directory/increase.txt");
  4193.         }
  4194.         else {
  4195.                 $maj_limit_random = 5;
  4196.         }
  4197.        
  4198.         if ($maj_count_random > $maj_limit_random) {
  4199.        
  4200.                 echo '<div class="panel_wrapper"><div class="panel_title">Random Entries</div>';
  4201.                
  4202.                 echo "<div class=\"panel_body\">";
  4203.        
  4204.                 $maj_increment_random = 0;
  4205.        
  4206.                 if ($maj_count_random <= $maj_limit_random * 2) {
  4207.                         $maj_show_random = $maj_count_random - 1;
  4208.                 }
  4209.                 else {
  4210.                         $maj_show_random = $maj_limit_random * 2 - 1;
  4211.                 }
  4212.        
  4213.                 while ($maj_increment_random <= $maj_show_random) {
  4214.                         echo "<a class=\"navlink\" href=\"index.php?entry={$maj_random[$maj_increment_random]}\">";
  4215.                         readfile("$maj_data_directory/items/$maj_random[$maj_increment_random]/title.txt");
  4216.                         echo "</a><br>";
  4217.        
  4218.                         $maj_increment_random = $maj_increment_random + 1;
  4219.                 }
  4220.         }
  4221.        
  4222.         if ($maj_count_random > $maj_limit_random) {
  4223.                 echo "</div></div>";   
  4224.         }
  4225. }
  4226. ?>
  4227.  
  4228.  
  4229. <?php
  4230.  
  4231. if (($maj_count_archives > 0) and ($maj_count_latest > $maj_increase) and ($maj_count_latest > 0) and (!file_exists("$maj_data_directory/xarc.txt") or ($maj_logged_in_username == $maj_admin_username))) {
  4232.  
  4233.         $maj_archive_entries = implode(" ",$maj_archives);
  4234.  
  4235.         $maj_unique_archive_list = array_unique($maj_archives);
  4236.  
  4237.         echo "<div class=\"panel_wrapper\"><div class=\"panel_title\">Archives ($maj_count_archives)</div>";
  4238.         echo "<div class=\"panel_body\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">";
  4239.  
  4240.         foreach ($maj_unique_archive_list as $maj_archive_list_entry) {
  4241.  
  4242.                 $maj_archive_list_value = substr($maj_archive_list_entry,0,6);
  4243.                 $maj_archive_list_year = substr($maj_archive_list_entry,0,4);
  4244.                 $maj_archive_list_month = substr($maj_archive_list_entry,4,2);
  4245.                 $maj_archive_list_month = date("F",mktime(0,0,0,$maj_archive_list_month));
  4246.                 $maj_archive_list_num = substr_count($maj_archive_entries,$maj_archive_list_entry);
  4247.  
  4248.                 echo "<tr><td><a class=\"navlink\" href=\"index.php?archive=$maj_archive_list_value\"><nobr>$maj_archive_list_month $maj_archive_list_year</nobr></a></td><td align=right>$maj_archive_list_num</td></tr>";
  4249.         }
  4250.         echo "</table></div></div>";
  4251. }
  4252.  
  4253. if ($maj_count_right_panels > 0) {
  4254.  
  4255.         foreach ($maj_right_panels as $maj_right_panel) {
  4256.  
  4257.                 if (!file_exists("$maj_data_directory/panels/$maj_right_panel/free.txt")) {
  4258.  
  4259.                         if (file_exists("$maj_data_directory/panels/$maj_right_panel/border.txt")) {
  4260.                                 $maj_right_panel_border = file_get_contents("$maj_data_directory/panels/$maj_right_panel/border.txt");
  4261.                         }
  4262.                         else {
  4263.                                 if (isset($maj_right_panel_border)) {
  4264.                                         unset($maj_right_panel_border);
  4265.                                 }
  4266.                         }
  4267.  
  4268.                         if (file_exists("$maj_data_directory/panels/$maj_right_panel/bgcolor-t.txt")) {
  4269.                                 $maj_right_panel_bgcolor_t = file_get_contents("$maj_data_directory/panels/$maj_right_panel/bgcolor-t.txt");
  4270.                         }
  4271.                         else {
  4272.                                 if (isset($maj_right_panel_bgcolor_t)) {
  4273.                                         unset($maj_right_panel_bgcolor_t);
  4274.                                 }
  4275.                         }
  4276.  
  4277.                         if (file_exists("$maj_data_directory/panels/$maj_right_panel/bgcolor-c.txt")) {
  4278.                                 $maj_right_panel_bgcolor_c = file_get_contents("$maj_data_directory/panels/$maj_right_panel/bgcolor-c.txt");
  4279.                         }
  4280.                         else {
  4281.                                 if (isset($maj_right_panel_bgcolor_c)) {
  4282.                                         unset($maj_right_panel_bgcolor_c);
  4283.                                 }
  4284.                         }
  4285.  
  4286.                         if (file_exists("$maj_data_directory/panels/$maj_right_panel/text-t.txt")) {
  4287.                                 $maj_right_panel_text_t = file_get_contents("$maj_data_directory/panels/$maj_right_panel/text-t.txt");
  4288.                         }
  4289.                         else {
  4290.                                 if (isset($maj_right_panel_text_t)) {
  4291.                                         unset($maj_right_panel_text_t);
  4292.                                 }
  4293.                         }
  4294.  
  4295.                         if (file_exists("$maj_data_directory/panels/$maj_right_panel/text-c.txt")) {
  4296.                                 $maj_right_panel_text_c = file_get_contents("$maj_data_directory/panels/$maj_right_panel/text-c.txt");
  4297.                         }
  4298.                         else {
  4299.                                 if (isset($maj_right_panel_text_c)) {
  4300.                                         unset($maj_right_panel_text_c);
  4301.                                 }
  4302.                         }
  4303.  
  4304.                         echo '<div class="panel_wrapper"><div class="panel_title"';
  4305.  
  4306.                         if (isset($maj_right_panel_border) or isset($maj_right_panel_bgcolor_t) or isset($maj_right_panel_text_t)) {
  4307.                                 echo ' style="';
  4308.                         }
  4309.  
  4310.                         if (isset($maj_right_panel_bgcolor_t)) {
  4311.                                 echo "background-color: $maj_right_panel_bgcolor_t;";
  4312.                         }
  4313.  
  4314.                         if (isset($maj_right_panel_text_t)) {
  4315.                                 echo "color: $maj_right_panel_text_t;";
  4316.                         }
  4317.  
  4318.                         if (isset($maj_right_panel_border)) {
  4319.                                 echo "border-color: $maj_right_panel_border;";
  4320.                         }
  4321.  
  4322.                         if (isset($maj_right_panel_border) or isset($maj_right_panel_bgcolor_t) or isset($maj_right_panel_text_t)) {
  4323.                                 echo '"';
  4324.                         }
  4325.  
  4326.                                 echo '>';
  4327.  
  4328.                         readfile("$maj_data_directory/panels/$maj_right_panel/title.txt");
  4329.  
  4330.                         if (isset($maj_logged_in_username) and ($maj_logged_in_username == $maj_admin_username)) {
  4331.                                 echo "<a href=\"panels.php#{$maj_right_panel}\">";
  4332.                                 echo '<img src="images/widget.edit.png" border="0" width="11" height="11" align="right"></a>';
  4333.                         }
  4334.  
  4335.                         if (file_exists("$maj_data_directory/panels/$maj_right_panel/private.txt")) {
  4336.                                 echo '<img src="images/widget.private.png" border="0" width="11" height="11" align="right">';
  4337.                         }
  4338.  
  4339.                         echo '</div>';
  4340.  
  4341.                         echo '<div class="panel_body"';
  4342.  
  4343.                         if (isset($maj_right_panel_border) or isset($maj_right_panel_bgcolor_c) or isset($maj_right_panel_text_c)) {
  4344.                                 echo ' style="';
  4345.                         }
  4346.  
  4347.                         if (isset($maj_right_panel_bgcolor_c)) {
  4348.                                 echo "background-color: $maj_right_panel_bgcolor_c;";
  4349.                         }
  4350.  
  4351.                         if (isset($maj_right_panel_text_c)) {
  4352.                                 echo "color: $maj_right_panel_text_c;";
  4353.                         }
  4354.  
  4355.                         if (isset($maj_right_panel_border)) {
  4356.                                 echo "border-color: $maj_right_panel_border;";
  4357.                         }
  4358.  
  4359.                         if (isset($maj_right_panel_border) or isset($maj_right_panel_bgcolor_c) or isset($maj_right_panel_text_c)) {
  4360.                                 echo '"';
  4361.                         }
  4362.  
  4363.                         echo '>';
  4364.                 }
  4365.  
  4366.                 if (file_exists("$maj_data_directory/panels/$maj_right_panel/free.txt")) {
  4367.                         echo '<div class=panel_free>';
  4368.                 }
  4369.  
  4370.                 include("$maj_data_directory/panels/$maj_right_panel/panel.php");
  4371.  
  4372.                 echo '</div></div>';
  4373.  
  4374.                 if (file_exists("$maj_data_directory/panels/$maj_right_panel/free.txt") and !file_exists("$maj_data_directory/panels/$maj_right_panel/nomargin.txt")) {
  4375.                         echo "<div style=\"height: {$maj_wspace}px;\"></div>";
  4376.                 }
  4377.         }
  4378. }
  4379.  
  4380. if ($maj_count_latest > 0) {
  4381.  
  4382.         $mphp_version = phpversion();
  4383.  
  4384.         echo "<div class=\"mbadge\"><nobr><a class=\"mblink\" target=\"_maj\" href=\"http://majcms.org/\"><span class=\"mbox1\">MAJ</span><span class=\"mbox2\">2.0</span></a></nobr></div>";
  4385.         echo "<div class=\"mbadge\"><nobr><a class=\"mblink\" target=\"_maj\" href=\"http://php.net/\"><span class=\"mbox1\">PHP</span><span class=\"mbox2\">$mphp_version</span></a></nobr></div>";
  4386.         echo "<div class=\"mbadge\"><nobr><a class=\"mblink\" target=\"_maj\" href=\"rss.php?ver=0.91\"><span class=\"mbox1\">RSS</span><span class=\"mbox2\">0.91</span></a></nobr></div>";
  4387.         echo "<div class=\"mbadge\"><nobr><a class=\"mblink\" target=\"_maj\" href=\"rss.php?ver=1.0\"><span class=\"mbox1\">RSS</span><span class=\"mbox2\">1.0</span></a></nobr></div>";
  4388.         echo "<div class=\"mbadge\"><nobr><a class=\"mblink\" target=\"_maj\" href=\"rss.php?ver=2.0\"><span class=\"mbox1\">RSS</span><span class=\"mbox2\">2.0</span></a></nobr></div>";
  4389.         echo "<div class=\"mbadge\"><nobr><a class=\"mblink\" target=\"_maj\" href=\"sitemap.php\"><span class=\"mbox1\">XML</span><span class=\"mbox2\">SITEMAP</span></a></nobr></div>";
  4390. }
  4391.  
  4392. echo "</td></tr>";
  4393.  
  4394. echo "<tr><td colspan=\"7\" height=\"$maj_wspace\"><div style=\"height: {$maj_wspace}px;\"></div></td></tr>";
  4395.  
  4396. echo "</table>";
  4397.  
  4398. if (file_exists("$maj_data_directory/footer.txt")) {
  4399.  
  4400.         $maj_footer_panel = file_get_contents("$maj_data_directory/footer.txt");
  4401.  
  4402.         if (file_exists("$maj_data_directory/panels/$maj_footer_panel") and (!file_exists("$maj_data_directory/panels/$maj_footer_panel/private.txt") or isset($maj_logged_in_username))) {
  4403.                 include("$maj_data_directory/panels/$maj_footer_panel/panel.php");
  4404.         }
  4405.  
  4406. }
  4407.  
  4408. if (file_exists("$maj_data_directory/center.txt")) {
  4409.         echo "</center>";
  4410. }
  4411.  
  4412. ?>
  4413.  
filedropmaj.git-01822e4.tar.bz2
147.95 KB
82 downloads
filedropmaj.git-01822e4.zip
201.96 KB
29 downloads
filedropmaj.git-0291349.tar.bz2
152.85 KB
81 downloads
filedropmaj.git-0291349.zip
211.90 KB
29 downloads
filedropmaj.git-02cb3b7.tar.bz2
151.48 KB
84 downloads
filedropmaj.git-02cb3b7.zip
209.82 KB
29 downloads
filedropmaj.git-0811dd5.tar.bz2
152.90 KB
79 downloads
filedropmaj.git-0811dd5.zip
211.90 KB
27 downloads
filedropmaj.git-083625f.tar.bz2
132.92 KB
77 downloads
filedropmaj.git-083625f.zip
179.59 KB
29 downloads
filedropmaj.git-0885d7b.tar.bz2
92.63 KB
79 downloads
filedropmaj.git-0885d7b.zip
132.34 KB
26 downloads
filedropmaj.git-09c6f33.tar.bz2
151.51 KB
79 downloads
filedropmaj.git-09c6f33.zip
202.12 KB
27 downloads
filedropmaj.git-0b26a85.tar.bz2
151.44 KB
75 downloads
filedropmaj.git-0b26a85.zip
209.75 KB
25 downloads
filedropmaj.git-0b32424.tar.bz2
151.66 KB
78 downloads
filedropmaj.git-0b32424.zip
206.72 KB
25 downloads
filedropmaj.git-0f3ac59.tar.bz2
152.14 KB
75 downloads
filedropmaj.git-0f3ac59.zip
211.45 KB
22 downloads
filedropmaj.git-11d4582.tar.bz2
143.02 KB
7 downloads
filedropmaj.git-11d4582.zip
195.12 KB
21 downloads
filedropmaj.git-17f105a.tar.bz2
137.96 KB
73 downloads
filedropmaj.git-17f105a.zip
193.02 KB
21 downloads
filedropmaj.git-183270b.tar.bz2
137.54 KB
77 downloads
filedropmaj.git-183270b.zip
187.93 KB
22 downloads
filedropmaj.git-197a49d.tar.bz2
152.03 KB
74 downloads
filedropmaj.git-197a49d.zip
211.32 KB
24 downloads
filedropmaj.git-1b9af25.tar.bz2
152.87 KB
70 downloads
filedropmaj.git-1b9af25.zip
211.96 KB
21 downloads
filedropmaj.git-1be2914.tar.bz2
149.30 KB
71 downloads
filedropmaj.git-1be2914.zip
203.09 KB
20 downloads
filedropmaj.git-1bed800.tar.bz2
138.15 KB
68 downloads
filedropmaj.git-1bed800.zip
190.15 KB
24 downloads
filedropmaj.git-1d330de.tar.bz2
151.65 KB
71 downloads
filedropmaj.git-1d330de.zip
210.80 KB
22 downloads
filedropmaj.git-1df190d.tar.bz2
151.72 KB
72 downloads
filedropmaj.git-1df190d.zip
210.85 KB
20 downloads
filedropmaj.git-1ee1167.tar.bz2
151.52 KB
72 downloads
filedropmaj.git-1ee1167.zip
202.16 KB
21 downloads
filedropmaj.git-2057838.tar.bz2
151.76 KB
68 downloads
filedropmaj.git-2057838.zip
202.36 KB
20 downloads
filedropmaj.git-2075213.tar.bz2
155.81 KB
69 downloads
filedropmaj.git-2075213.zip
208.39 KB
20 downloads
filedropmaj.git-211b7b0.tar.bz2
142.53 KB
71 downloads
filedropmaj.git-211b7b0.zip
194.64 KB
21 downloads
filedropmaj.git-2331f5a.tar.bz2
75.55 KB
73 downloads
filedropmaj.git-2331f5a.zip
100.32 KB
23 downloads
filedropmaj.git-25e3c4c.tar.bz2
147.57 KB
71 downloads
filedropmaj.git-25e3c4c.zip
201.46 KB
20 downloads
filedropmaj.git-2622313.tar.bz2
151.47 KB
68 downloads
filedropmaj.git-2622313.zip
206.44 KB
18 downloads
filedropmaj.git-273e4b2.tar.bz2
152.60 KB
68 downloads
filedropmaj.git-273e4b2.zip
203.40 KB
22 downloads
filedropmaj.git-2753e51.tar.bz2
136.37 KB
73 downloads
filedropmaj.git-2753e51.zip
184.34 KB
19 downloads
filedropmaj.git-2c1a589.tar.bz2
155.89 KB
67 downloads
filedropmaj.git-2c1a589.zip
208.69 KB
20 downloads
filedropmaj.git-2c3d544.tar.bz2
151.33 KB
10 downloads
filedropmaj.git-2c3d544.zip
206.23 KB
21 downloads
filedropmaj.git-2c85f72.tar.bz2
143.23 KB
67 downloads
filedropmaj.git-2c85f72.zip
194.84 KB
18 downloads
filedropmaj.git-2dc622c.tar.bz2
151.76 KB
67 downloads
filedropmaj.git-2dc622c.zip
202.35 KB
21 downloads
filedropmaj.git-2fabf8a.tar.bz2
151.35 KB
70 downloads
filedropmaj.git-2fabf8a.zip
206.24 KB
22 downloads
filedropmaj.git-322736b.tar.bz2
137.81 KB
62 downloads
filedropmaj.git-322736b.zip
190.18 KB
20 downloads
filedropmaj.git-374279c.tar.bz2
137.54 KB
63 downloads
filedropmaj.git-374279c.zip
189.58 KB
19 downloads
filedropmaj.git-37e852d.tar.bz2
151.32 KB
58 downloads
filedropmaj.git-37e852d.zip
206.21 KB
18 downloads
filedropmaj.git-38636de.tar.bz2
147.35 KB
60 downloads
filedropmaj.git-38636de.zip
201.16 KB
76 downloads
filedropmaj.git-3b25d71.tar.bz2
147.88 KB
53 downloads
filedropmaj.git-3b25d71.zip
201.85 KB
20 downloads
filedropmaj.git-3b6df7a.tar.bz2
153.39 KB
49 downloads
filedropmaj.git-3b6df7a.zip
204.55 KB
24 downloads
filedropmaj.git-3bf6bd2.tar.bz2
137.77 KB
54 downloads
filedropmaj.git-3bf6bd2.zip
190.16 KB
21 downloads
filedropmaj.git-3e012ff.tar.bz2
152.83 KB
53 downloads
filedropmaj.git-3e012ff.zip
211.89 KB
23 downloads
filedropmaj.git-4129ab8.tar.bz2
135.86 KB
60 downloads
filedropmaj.git-4129ab8.zip
184.30 KB
21 downloads
filedropmaj.git-414dbb4.tar.bz2
91.09 KB
58 downloads
filedropmaj.git-414dbb4.zip
130.29 KB
21 downloads
filedropmaj.git-43755d0.tar.bz2
150.25 KB
51 downloads
filedropmaj.git-43755d0.zip
204.44 KB
21 downloads
filedropmaj.git-4c20005.tar.bz2
55.59 KB
52 downloads
filedropmaj.git-4c20005.zip
74.20 KB
21 downloads
filedropmaj.git-4ccdbcd.tar.bz2
136.38 KB
55 downloads
filedropmaj.git-4ccdbcd.zip
185.22 KB
23 downloads
filedropmaj.git-4cd1a1c.tar.bz2
155.25 KB
51 downloads
filedropmaj.git-4cd1a1c.zip
207.88 KB
24 downloads
filedropmaj.git-4cf16d1.tar.bz2
76.32 KB
56 downloads
filedropmaj.git-4cf16d1.zip
101.80 KB
19 downloads
filedropmaj.git-4ec45a0.tar.bz2
131.16 KB
52 downloads
filedropmaj.git-4ec45a0.zip
172.66 KB
21 downloads
filedropmaj.git-4f73c22.tar.bz2
134.46 KB
52 downloads
filedropmaj.git-4f73c22.zip
182.45 KB
20 downloads
filedropmaj.git-5457969.tar.bz2
155.21 KB
54 downloads
filedropmaj.git-5457969.zip
207.63 KB
21 downloads
filedropmaj.git-57ee8a1.tar.bz2
145.49 KB
56 downloads
filedropmaj.git-57ee8a1.zip
198.12 KB
73 downloads
filedropmaj.git-592978d.tar.bz2
138.38 KB
54 downloads
filedropmaj.git-592978d.zip
190.58 KB
18 downloads
filedropmaj.git-5935b42.tar.bz2
135.60 KB
51 downloads
filedropmaj.git-5935b42.zip
183.28 KB
22 downloads
filedropmaj.git-5b443b6.tar.bz2
152.00 KB
54 downloads
filedropmaj.git-5b443b6.zip
211.07 KB
20 downloads
filedropmaj.git-5b4a9bf.tar.bz2
155.29 KB
50 downloads
filedropmaj.git-5b4a9bf.zip
207.93 KB
19 downloads
filedropmaj.git-5b6c01d.tar.bz2
147.13 KB
52 downloads
filedropmaj.git-5b6c01d.zip
200.86 KB
23 downloads
filedropmaj.git-5da45f7.tar.bz2
147.27 KB
52 downloads
filedropmaj.git-5da45f7.zip
201.02 KB
20 downloads
filedropmaj.git-5e53618.tar.bz2
75.57 KB
56 downloads
filedropmaj.git-5e53618.zip
100.78 KB
21 downloads
filedropmaj.git-5f8ca35.tar.bz2
136.39 KB
50 downloads
filedropmaj.git-5f8ca35.zip
185.32 KB
20 downloads
filedropmaj.git-61e3d7b.tar.bz2
153.52 KB
50 downloads
filedropmaj.git-61e3d7b.zip
204.73 KB
21 downloads
filedropmaj.git-62a635c.tar.bz2
155.90 KB
54 downloads
filedropmaj.git-62a635c.zip
208.73 KB
21 downloads
filedropmaj.git-6390d34.tar.bz2
138.39 KB
54 downloads
filedropmaj.git-6390d34.zip
190.56 KB
24 downloads
filedropmaj.git-649dfbe.tar.bz2
151.78 KB
53 downloads
filedropmaj.git-649dfbe.zip
210.91 KB
21 downloads
filedropmaj.git-65d6570.tar.bz2
151.63 KB
56 downloads
filedropmaj.git-65d6570.zip
210.80 KB
23 downloads
filedropmaj.git-660433f.tar.bz2
151.67 KB
53 downloads
filedropmaj.git-660433f.zip
206.68 KB
21 downloads
filedropmaj.git-6619ae5.tar.bz2
153.23 KB
11 downloads
filedropmaj.git-6619ae5.zip
204.28 KB
20 downloads
filedropmaj.git-68e4e3a.tar.bz2
135.13 KB
51 downloads
filedropmaj.git-68e4e3a.zip
182.91 KB
20 downloads
filedropmaj.git-6995297.tar.bz2
144.93 KB
56 downloads
filedropmaj.git-6995297.zip
197.18 KB
18 downloads
filedropmaj.git-69d6fd3.tar.bz2
143.23 KB
51 downloads
filedropmaj.git-69d6fd3.zip
194.89 KB
23 downloads
filedropmaj.git-6aa872a.tar.bz2
142.95 KB
55 downloads
filedropmaj.git-6aa872a.zip
195.11 KB
22 downloads
filedropmaj.git-6bad5c7.tar.bz2
147.04 KB
56 downloads
filedropmaj.git-6bad5c7.zip
200.79 KB
21 downloads
filedropmaj.git-6e96a2d.tar.bz2
152.13 KB
55 downloads
filedropmaj.git-6e96a2d.zip
207.21 KB
74 downloads
filedropmaj.git-73d46de.tar.bz2
138.42 KB
52 downloads
filedropmaj.git-73d46de.zip
190.59 KB
20 downloads
filedropmaj.git-75e0478.tar.bz2
144.54 KB
56 downloads
filedropmaj.git-75e0478.zip
196.70 KB
22 downloads
filedropmaj.git-784fc35.tar.bz2
143.07 KB
55 downloads
filedropmaj.git-784fc35.zip
195.01 KB
20 downloads
filedropmaj.git-7872a83.tar.bz2
138.51 KB
56 downloads
filedropmaj.git-7872a83.zip
190.69 KB
19 downloads
filedropmaj.git-788fb89.tar.bz2
138.30 KB
54 downloads
filedropmaj.git-788fb89.zip
191.26 KB
25 downloads
filedropmaj.git-796d8a3.tar.bz2
138.92 KB
53 downloads
filedropmaj.git-796d8a3.zip
191.24 KB
20 downloads
filedropmaj.git-79a5e8d.tar.bz2
132.43 KB
55 downloads
filedropmaj.git-79a5e8d.zip
176.90 KB
21 downloads
filedropmaj.git-7b3b2e0.tar.bz2
147.24 KB
53 downloads
filedropmaj.git-7b3b2e0.zip
201.05 KB
21 downloads
filedropmaj.git-7e28eed.tar.bz2
138.89 KB
50 downloads
filedropmaj.git-7e28eed.zip
191.24 KB
21 downloads
filedropmaj.git-8279296.tar.bz2
135.56 KB
55 downloads
filedropmaj.git-8279296.zip
183.25 KB
21 downloads
filedropmaj.git-84c17fe.tar.bz2
152.87 KB
56 downloads
filedropmaj.git-84c17fe.zip
211.90 KB
21 downloads
filedropmaj.git-87c5d5f.tar.bz2
135.78 KB
53 downloads
filedropmaj.git-87c5d5f.zip
183.64 KB
19 downloads
filedropmaj.git-8a48901.tar.bz2
147.27 KB
55 downloads
filedropmaj.git-8a48901.zip
201.06 KB
21 downloads
filedropmaj.git-8ad9892.tar.bz2
164.04 KB
53 downloads
filedropmaj.git-8ad9892.zip
224.42 KB
20 downloads
filedropmaj.git-8b4cf2a.tar.bz2
134.06 KB
53 downloads
filedropmaj.git-8b4cf2a.zip
180.78 KB
21 downloads
filedropmaj.git-8b7e38d.tar.bz2
138.04 KB
60 downloads
filedropmaj.git-8b7e38d.zip
190.39 KB
77 downloads
filedropmaj.git-8df6e40.tar.bz2
143.11 KB
55 downloads
filedropmaj.git-8df6e40.zip
194.66 KB
25 downloads
filedropmaj.git-8e80c84.tar.bz2
138.18 KB
10 downloads
filedropmaj.git-8e80c84.zip
190.30 KB
21 downloads
filedropmaj.git-8ec0fba.tar.bz2
138.37 KB
56 downloads
filedropmaj.git-8ec0fba.zip
191.39 KB
20 downloads
filedropmaj.git-8f7abf6.tar.bz2
153.36 KB
55 downloads
filedropmaj.git-8f7abf6.zip
211.80 KB
19 downloads
filedropmaj.git-923f11a.tar.bz2
138.14 KB
52 downloads
filedropmaj.git-923f11a.zip
191.03 KB
22 downloads
filedropmaj.git-955e82e.tar.bz2
42.71 KB
6 downloads
filedropmaj.git-955e82e.zip
59.77 KB
20 downloads
filedropmaj.git-95add4a.tar.bz2
151.23 KB
57 downloads
filedropmaj.git-95add4a.zip
205.91 KB
20 downloads
filedropmaj.git-96fe0ba.tar.bz2
137.68 KB
48 downloads
filedropmaj.git-96fe0ba.zip
190.34 KB
20 downloads
filedropmaj.git-99a90ce.tar.bz2
137.82 KB
57 downloads
filedropmaj.git-99a90ce.zip
191.20 KB
23 downloads
filedropmaj.git-9a69bb9.tar.bz2
143.19 KB
56 downloads
filedropmaj.git-9a69bb9.zip
194.70 KB
22 downloads
filedropmaj.git-9b6538e.tar.bz2
151.45 KB
54 downloads
filedropmaj.git-9b6538e.zip
202.15 KB
18 downloads
filedropmaj.git-9c4292d.tar.bz2
132.06 KB
55 downloads
filedropmaj.git-9c4292d.zip
176.93 KB
20 downloads
filedropmaj.git-9c78d40.tar.bz2
137.70 KB
54 downloads
filedropmaj.git-9c78d40.zip
190.49 KB
23 downloads
filedropmaj.git-9f1363f.tar.bz2
43.12 KB
57 downloads
filedropmaj.git-9f1363f.zip
60.31 KB
20 downloads
filedropmaj.git-a16c3eb.tar.bz2
90.22 KB
51 downloads
filedropmaj.git-a16c3eb.zip
128.62 KB
20 downloads
filedropmaj.git-a3aa72d.tar.bz2
153.00 KB
54 downloads
filedropmaj.git-a3aa72d.zip
203.86 KB
22 downloads
filedropmaj.git-a6886e4.tar.bz2
144.69 KB
55 downloads
filedropmaj.git-a6886e4.zip
196.95 KB
21 downloads
filedropmaj.git-a8669dc.tar.bz2
135.60 KB
53 downloads
filedropmaj.git-a8669dc.zip
183.34 KB
20 downloads
filedropmaj.git-a9477f1.tar.bz2
135.59 KB
55 downloads
filedropmaj.git-a9477f1.zip
183.45 KB
22 downloads
filedropmaj.git-aa285db.tar.bz2
151.73 KB
55 downloads
filedropmaj.git-aa285db.zip
210.85 KB
20 downloads
filedropmaj.git-aa6ae87.tar.bz2
135.44 KB
55 downloads
filedropmaj.git-aa6ae87.zip
183.88 KB
21 downloads
filedropmaj.git-ab6bc22.tar.bz2
151.71 KB
49 downloads
filedropmaj.git-ab6bc22.zip
210.84 KB
23 downloads
filedropmaj.git-adef726.tar.bz2
153.48 KB
52 downloads
filedropmaj.git-adef726.zip
212.32 KB
21 downloads
filedropmaj.git-afe5877.tar.bz2
144.73 KB
49 downloads
filedropmaj.git-afe5877.zip
197.01 KB
20 downloads
filedropmaj.git-b2d9f8e.tar.bz2
133.22 KB
51 downloads
filedropmaj.git-b2d9f8e.zip
179.27 KB
20 downloads
filedropmaj.git-b41f320.tar.bz2
151.56 KB
50 downloads
filedropmaj.git-b41f320.zip
209.85 KB
25 downloads
filedropmaj.git-b4432ce.tar.bz2
152.96 KB
52 downloads
filedropmaj.git-b4432ce.zip
203.86 KB
22 downloads
filedropmaj.git-b67b08f.tar.bz2
151.27 KB
53 downloads
filedropmaj.git-b67b08f.zip
206.15 KB
23 downloads
filedropmaj.git-b899831.tar.bz2
143.12 KB
53 downloads
filedropmaj.git-b899831.zip
194.60 KB
21 downloads
filedropmaj.git-b8b49c1.tar.bz2
132.59 KB
50 downloads
filedropmaj.git-b8b49c1.zip
178.90 KB
19 downloads
filedropmaj.git-b9c5bcf.tar.bz2
155.92 KB
52 downloads
filedropmaj.git-b9c5bcf.zip
208.70 KB
19 downloads
filedropmaj.git-bbddb1f.tar.bz2
151.63 KB
51 downloads
filedropmaj.git-bbddb1f.zip
209.92 KB
23 downloads
filedropmaj.git-bcaa744.tar.bz2
146.98 KB
55 downloads
filedropmaj.git-bcaa744.zip
200.79 KB
22 downloads
filedropmaj.git-c1ff9dc.tar.bz2
138.39 KB
54 downloads
filedropmaj.git-c1ff9dc.zip
191.43 KB
104 downloads
filedropmaj.git-c20c4b0.tar.bz2
151.64 KB
53 downloads
filedropmaj.git-c20c4b0.zip
210.79 KB
19 downloads
filedropmaj.git-c37f3f7.tar.bz2
145.45 KB
68 downloads
filedropmaj.git-c37f3f7.zip
198.11 KB
30 downloads
filedropmaj.git-c532394.tar.bz2
146.39 KB
54 downloads
filedropmaj.git-c532394.zip
199.91 KB
23 downloads
filedropmaj.git-c6317a4.tar.bz2
152.01 KB
52 downloads
filedropmaj.git-c6317a4.zip
207.08 KB
21 downloads
filedropmaj.git-c748176.tar.bz2
89.44 KB
52 downloads
filedropmaj.git-c748176.zip
126.35 KB
21 downloads
filedropmaj.git-c9ed81f.tar.bz2
135.56 KB
52 downloads
filedropmaj.git-c9ed81f.zip
183.28 KB
23 downloads
filedropmaj.git-c9f9b80.tar.bz2
138.50 KB
51 downloads
filedropmaj.git-c9f9b80.zip
190.66 KB
22 downloads
filedropmaj.git-ca65b73.tar.bz2
152.69 KB
52 downloads
filedropmaj.git-ca65b73.zip
207.87 KB
21 downloads
filedropmaj.git-cd80b77.tar.bz2
153.12 KB
52 downloads
filedropmaj.git-cd80b77.zip
212.01 KB
19 downloads
filedropmaj.git-cffbb2a.tar.bz2
138.22 KB
50 downloads
filedropmaj.git-cffbb2a.zip
190.28 KB
22 downloads
filedropmaj.git-d061ad7.tar.bz2
55.78 KB
67 downloads
filedropmaj.git-d061ad7.zip
74.39 KB
22 downloads
filedropmaj.git-d0af4d6.tar.bz2
57.28 KB
53 downloads
filedropmaj.git-d0af4d6.zip
78.56 KB
22 downloads
filedropmaj.git-d1caa0a.tar.bz2
144.57 KB
55 downloads
filedropmaj.git-d1caa0a.zip
196.63 KB
22 downloads
filedropmaj.git-d5679b5.tar.bz2
152.37 KB
53 downloads
filedropmaj.git-d5679b5.zip
207.52 KB
23 downloads
filedropmaj.git-d72f459.tar.bz2
147.90 KB
55 downloads
filedropmaj.git-d72f459.zip
201.92 KB
18 downloads
filedropmaj.git-d958c91.tar.bz2
144.67 KB
55 downloads
filedropmaj.git-d958c91.zip
196.88 KB
25 downloads
filedropmaj.git-d96784f.tar.bz2
135.58 KB
52 downloads
filedropmaj.git-d96784f.zip
183.46 KB
20 downloads
filedropmaj.git-da4b73f.tar.bz2
152.62 KB
49 downloads
filedropmaj.git-da4b73f.zip
203.48 KB
21 downloads
filedropmaj.git-dd24240.tar.bz2
138.27 KB
51 downloads
filedropmaj.git-dd24240.zip
190.45 KB
80 downloads
filedropmaj.git-e11e772.tar.bz2
152.09 KB
50 downloads
filedropmaj.git-e11e772.zip
211.33 KB
20 downloads
filedropmaj.git-e61478e.tar.bz2
135.95 KB
54 downloads
filedropmaj.git-e61478e.zip
183.91 KB
21 downloads
filedropmaj.git-e7a2547.tar.bz2
133.80 KB
49 downloads
filedropmaj.git-e7a2547.zip
180.05 KB
24 downloads
filedropmaj.git-e8a3b95.tar.bz2
138.15 KB
56 downloads
filedropmaj.git-e8a3b95.zip
191.04 KB
19 downloads
filedropmaj.git-eac86d5.tar.bz2
155.65 KB
51 downloads
filedropmaj.git-eac86d5.zip
208.28 KB
22 downloads
filedropmaj.git-ed83bf9.tar.bz2
135.16 KB
54 downloads
filedropmaj.git-ed83bf9.zip
182.91 KB
24 downloads
filedropmaj.git-ee50d40.tar.bz2
135.59 KB
57 downloads
filedropmaj.git-ee50d40.zip
183.48 KB
25 downloads
filedropmaj.git-efdb4df.tar.bz2
155.87 KB
58 downloads
filedropmaj.git-efdb4df.zip
208.72 KB
24 downloads
filedropmaj.git-f1554f8.tar.bz2
151.30 KB
57 downloads
filedropmaj.git-f1554f8.zip
206.22 KB
25 downloads
filedropmaj.git-f72a07b.tar.bz2
153.44 KB
56 downloads
filedropmaj.git-f72a07b.zip
212.11 KB
26 downloads
filedropmaj.git-f7ea5a1.tar.bz2
147.46 KB
55 downloads
filedropmaj.git-f7ea5a1.zip
201.32 KB
26 downloads
filedropmaj.git-f8a7353.tar.bz2
138.49 KB
56 downloads
filedropmaj.git-f8a7353.zip
190.66 KB
27 downloads
filedropmaj.git-fb84a8d.tar.bz2
137.61 KB
61 downloads
filedropmaj.git-fb84a8d.zip
190.70 KB
28 downloads
filedropmaj.git-fdcf5d3.tar.bz2
152.34 KB
60 downloads
filedropmaj.git-fdcf5d3.zip
207.53 KB
27 downloads
filedropmaj.git-feca42d.tar.bz2
132.90 KB
60 downloads
filedropmaj.git-feca42d.zip
179.44 KB
30 downloads