no, your not hacked. You did not update your acp.
It is a simple fix.
using your ftp client or webhosting file manager,
OPEN
your admin/index.php
Find
- Code: Select all
//////////////////Â Â // Check for news from integramod
FIND
- Code: Select all
   }  }////////////////////////
REPLACE both and everything in between with this
- Code: Select all
//////////////////  // Check for news from integramod  $errno = 0;  $errstr = $news = '';   if ($fsock = @fsockopen('www.integramod.com', 80, $errno, $errstr))  {   @fputs($fsock, "GET /forum/updateNews/news.txt HTTP/1.1rn");   @fputs($fsock, "HOST]http://www.integramod.com[/url]rn");   @fputs($fsock, "Connection: closernrn");    $get_info = false;   while (!@feof($fsock))   {     if ($get_info)     {      $news .= @fread($fsock, 1024);     }     else     {      if (@fgets($fsock, 1024) == "rn")      {        $get_info = true;      }     }   }   @fclose($fsock);   }  else  {   if ($errstr)   {     $news = '<p>' . sprintf($lang['Connect_socket_error_integra'], $errstr) . '</p>';   }   else   {     $news = '<p>' . $lang['Socket_functions_disabled'] . '</p>';   }  }////////////////////////Â
SAVE and re check your acp
*note, when you copy this code, turn off the line numbers so you dont include them by clicking
LINE NUMBER ON/OFF in the top of the code box
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie